# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: D:\projects\nb.reset_settings\openide\fs\src\org\openide\filesystems # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: MultiFileObject.java *** D:\projects\nb.reset_settings\openide\fs\src\org\openide\filesystems\MultiFileObject.java 1.5 --- D:\projects\nb.reset_settings\openide\fs\src\org\openide\filesystems\MultiFileObject.java 1.5.4.1 *************** *** 673,678 **** --- 673,682 ---- */ public Object getAttribute(String attrName) { // Performance optimization (avoid calling getPath() too many times): + return getMultiFileSystem().readAttribute(this, attrName); + } + + final Object getAttributeDefault(String attrName) { return getAttribute(attrName, getPath()); }