jdk/src/solaris/classes/sun/nio/fs/UnixFileSystem.java
changeset 23887 7b2fb8d5f6be
parent 23010 6dadb192ad81
equal deleted inserted replaced
23886:6cb6ad1e208f 23887:7b2fb8d5f6be
   337                     return UnixUserPrincipals.lookupGroup(group);
   337                     return UnixUserPrincipals.lookupGroup(group);
   338                 }
   338                 }
   339             };
   339             };
   340     }
   340     }
   341 
   341 
   342     // Override if the platform has different path match requrement, such as
   342     // Override if the platform has different path match requirement, such as
   343     // case insensitive or Unicode canonical equal on MacOSX
   343     // case insensitive or Unicode canonical equal on MacOSX
   344     Pattern compilePathMatchPattern(String expr) {
   344     Pattern compilePathMatchPattern(String expr) {
   345         return Pattern.compile(expr);
   345         return Pattern.compile(expr);
   346     }
   346     }
   347 
   347