src/share/classes/java/nio/channels/FileChannel.java

Print this page

        

@@ -285,11 +285,11 @@
     {
         FileSystemProvider provider = path.getFileSystem().provider();
         return provider.newFileChannel(path, options, attrs);
     }
 
-    @SuppressWarnings({ "unchecked", "rawtypes" }) // generic array construction
+    @SuppressWarnings({"unchecked", "rawtypes"}) // generic array construction
     private static final FileAttribute<?>[] NO_ATTRIBUTES = new FileAttribute[0];
 
     /**
      * Opens or creates a file, returning a file channel to access the file.
      *