Description
hints = new HashSet();
hints.add(VisitHint.SKIP_UNRENDERED)
can be replaced with EnumSet.of(...).
The result is safe to multiple threads (with read operations) - a constant can be used instead of new instance every time.
hints = new HashSet();
hints.add(VisitHint.SKIP_UNRENDERED)
can be replaced with EnumSet.of(...).
The result is safe to multiple threads (with read operations) - a constant can be used instead of new instance every time.