src/solaris/classes/sun/nio/fs/SolarisUserDefinedFileAttributeView.java

Print this page

        

@@ -81,11 +81,11 @@
                     close(dfd);
                     throw x;
                 }
 
                 // read list of extended attributes
-                final List<String> list = new ArrayList<String>();
+                List<String> list = new ArrayList<>();
                 try {
                     byte[] name;
                     while ((name = readdir(dp)) != null) {
                         String s = new String(name);
                         if (!s.equals(".") && !s.equals(".."))