-
Enhancement
-
Resolution: Fixed
-
P5
-
None
-
b08
Implementation of both methods is the same.
UnixPath checkPath(Path obj) {
if (obj == null)
throw new NullPointerException();
if (!(obj instanceof UnixPath))
throw new ProviderMismatchException();
return (UnixPath)obj;
}
UnixPath checkPath(Path obj) {
if (obj == null)
throw new NullPointerException();
if (!(obj instanceof UnixPath))
throw new ProviderMismatchException();
return (UnixPath)obj;
}
- links to
-
Commit(master) openjdk/jdk/f5871df2
-
Review(master) openjdk/jdk/20155