Skip to content
Snippets Groups Projects
Commit eab94ae9 authored by tcarver's avatar tcarver
Browse files

fix if etc/project.properties is missing

parent 365c7cc1
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,7 @@ public class ProjectProperty extends JFrame
this.getClass().getClassLoader().getResource("etc/project.properties").toURI());
}
catch (URISyntaxException e1){}
catch (NullPointerException e2) {}
final Properties projectProps = new Properties();
try
......@@ -141,6 +142,8 @@ public class ProjectProperty extends JFrame
{
e.printStackTrace();
}
catch (NullPointerException e2) {}
centralProjects = getProjectMap(projectProps);
projectProps.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment