mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Canonicalize file names to help debugger.
This commit is contained in:
parent
0de6973509
commit
1de208b764
@ -262,6 +262,7 @@ public class Main {
|
||||
in.close();
|
||||
in = new FileReader(filename);
|
||||
}
|
||||
filename = new java.io.File(filename).getCanonicalPath();
|
||||
}
|
||||
catch (FileNotFoundException ex) {
|
||||
Context.reportError(ToolErrorReporter.getMessage(
|
||||
|
@ -262,6 +262,7 @@ public class Main {
|
||||
in.close();
|
||||
in = new FileReader(filename);
|
||||
}
|
||||
filename = new java.io.File(filename).getCanonicalPath();
|
||||
}
|
||||
catch (FileNotFoundException ex) {
|
||||
Context.reportError(ToolErrorReporter.getMessage(
|
||||
|
Loading…
Reference in New Issue
Block a user