Skip to content
Snippets Groups Projects
Commit 2fc7d23e authored by Christian Wulf's avatar Christian Wulf
Browse files

fixed PMD issues

parent 1fa8ff04
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
<rule ref="rulesets/java/controversial.xml"> <rule ref="rulesets/java/controversial.xml">
<exclude name="AtLeastOneConstructor" /> <exclude name="AtLeastOneConstructor" />
<exclude name="AvoidUsingVolatile" /> <exclude name="AvoidUsingVolatile" />
<exclude name="CallSuperInConstructor" />
</rule> </rule>
<!-- UR means "undefined reference" which is already detected by the compiler. <!-- UR means "undefined reference" which is already detected by the compiler.
......
...@@ -40,10 +40,12 @@ public abstract class Configuration extends AbstractCompositeStage { ...@@ -40,10 +40,12 @@ public abstract class Configuration extends AbstractCompositeStage {
this.factory = factory; this.factory = factory;
} }
@SuppressWarnings("PMD.DefaultPackage")
boolean isExecuted() { boolean isExecuted() {
return executed; return executed;
} }
@SuppressWarnings("PMD.DefaultPackage")
void setExecuted(final boolean executed) { void setExecuted(final boolean executed) {
this.executed = executed; this.executed = executed;
} }
......
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