safely returning null only when there is an exception

This commit is contained in:
Guilherme Silveira
2022-04-26 07:26:13 -03:00
parent d8dc99e2d4
commit 7c0bbf7f27
+1 -1
View File
@@ -1630,8 +1630,8 @@ public class Base {
} catch (IOException e) {
Messages.showWarning("sketch.properties",
"Error while reading sketch.properties from\n" + parentFolder, e);
return null;
}
return null;
}