We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbed6da commit b1915b8Copy full SHA for b1915b8
bundles/ilg.gnumcueclipse.packs.data/src/ilg/gnumcueclipse/packs/data/DataManager.java
@@ -1306,7 +1306,13 @@ public boolean isLeaf(Leaf node) {
1306
*/
1307
private Node loadCachedInstalledObjectsForBuild(File file) {
1308
1309
- fOut.println("Parsing cached file \"" + file.getCanonicalPath() + "\".");
+ String str;
1310
+ try {
1311
+ str = file.getCanonicalPath();
1312
+ } catch (IOException e) {
1313
+ str = file.getPath();
1314
+ }
1315
+ fOut.println("Parsing cached file \"" + str + "\".");
1316
1317
Node node = null;
1318
try {
0 commit comments