Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1244,8 +1244,8 @@ public static File tryMakeCanonical (File f)
try {
// getCanonicalFile does not canonicalize subst drives on Windows, so do this separately. This
// is a no-op on non-Windows platforms.
return SubstResolver.resolve(f.getCanonicalFile()); }
catch (IOException ignored) {
return SubstResolver.resolve(f.getCanonicalFile());
} catch (IOException ignored) {
Exceptions.ignore(ignored, "Can't log error: Could be too verbose.");
return new File(simplifyPath(f));
}
Expand Down
Loading