< prev index next >

src/java.base/share/classes/java/nio/file/attribute/AclEntry.java

Print this page

        

@@ -304,22 +304,22 @@
      * <p> The returned set is a modifiable copy of the permissions.
      *
      * @return the permissions component
      */
     public Set<AclEntryPermission> permissions() {
-        return new HashSet<AclEntryPermission>(perms);
+        return new HashSet<>(perms);
     }
 
     /**
      * Returns a copy of the flags component.
      *
      * <p> The returned set is a modifiable copy of the flags.
      *
      * @return the flags component
      */
     public Set<AclEntryFlag> flags() {
-        return new HashSet<AclEntryFlag>(flags);
+        return new HashSet<>(flags);
     }
 
     /**
      * Compares the specified object with this ACL entry for equality.
      *
< prev index next >