-
Enhancement
-
Resolution: Fixed
-
P5
-
None
-
b11
private static final Set<String> supportedFileAttributeViews = Collections
.unmodifiableSet(new HashSet<String>(Arrays.asList("basic", "dos", "acl", "owner", "user")));
can be simplified to
private static final Set<String> supportedFileAttributeViews = Set.of("basic", "dos", "acl", "owner", "user");
.unmodifiableSet(new HashSet<String>(Arrays.asList("basic", "dos", "acl", "owner", "user")));
can be simplified to
private static final Set<String> supportedFileAttributeViews = Set.of("basic", "dos", "acl", "owner", "user");