Hi Mandy,
Thanks for the review - and thanks for reminding me about
@modules java.logging/java.util.logging:open
I have a new webrev that incorporates your suggestions.
I have also tried to reduce the long lines (I recently
switched to a new IDE whose default config make them more
difficult to spot).
http://cr.openjdk.java.net/~dfuchs/webrev_8189953/webrev.01
best regards,
-- daniel
On 09/11/2017 17:41, mandy chung wrote:
Hi Daniel,
On 11/2/17 9:47 AM, Daniel Fuchs wrote:
Hi,
Please find below a patch for:
8189953: FileHandler constructor throws NoSuchFileException
with absolute path
https://bugs.openjdk.java.net/browse/JDK-8189953
webrev:
http://cr.openjdk.java.net/~dfuchs/webrev_8189953/webrev.00/
This looks okay.
A minor comment: I think line 695-709 can be made cleaner and easier to
read and
e.g.
if (word.length() >0) {
String n = word.toString();
if (result ==null) {
result = prev !=null ? prev.resolveSibling(n) : Paths.get(n);
}else {
Path p = prev !=null ? prev.resolveSibling(n) : Paths.get(n);
result = result.resolve(p);
}
}else if (result ==null) {
result = Paths.get("");
}
if (path.getRoot() ==null)
return result.toFile();
else return path.getRoot().resolve(result).toFile();
Mandy