Skip to content
Snippets Groups Projects
Commit 67ad2f80 authored by Sören Henning's avatar Sören Henning
Browse files

disable PMD for old properties file

parent fbbb278a
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
......@@ -73,7 +73,7 @@ public final class PropertiesModel {
properties.load(inputStream);
this.gitLabURL = properties.getProperty(PropertiesModel.KEY_GITLAB_URL);
this.tracURL = properties.getProperty(PropertiesModel.KEY_TRAC_URL);
} catch (final IOException e) {
} catch (final IOException e) { // NOPMD TODO
// PropertiesModel.LOGGER.error(e); //TODO
}
}
......@@ -90,7 +90,7 @@ public final class PropertiesModel {
try {
preferences.flush();
} catch (final BackingStoreException e) {
} catch (final BackingStoreException e) { // NOPMD TODO
// PropertiesModel.LOGGER.error(e);//TODO
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment