--- old/src/share/classes/sun/nio/fs/DynamicFileAttributeView.java Wed Jan 26 14:12:17 2011 +++ new/src/share/classes/sun/nio/fs/DynamicFileAttributeView.java Wed Jan 26 14:12:16 2011 @@ -35,11 +35,6 @@ interface DynamicFileAttributeView { /** - * Reads the value of an attribute. - */ - Object getAttribute(String attribute) throws IOException; - - /** * Sets/updates the value of an attribute. */ void setAttribute(String attribute, Object value) throws IOException; @@ -47,5 +42,5 @@ /** * Reads a set of file attributes as a bulk operation. */ - Map readAttributes(String[] attributes) throws IOException; + Map readAttributes(String[] attributes) throws IOException; }