Skip to content
Snippets Groups Projects
Commit 5c7fee66 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

Ignored empty method in abstract class (default implementation, which

should not be abstract, as suggested by PMD)
parent 9e4b0245
Branches
Tags
No related merge requests found
......@@ -124,7 +124,7 @@ public abstract class AbstractStage implements Stage {
this.connectUnconnectedOutputPorts();
}
public void onTerminating() throws Exception {
public void onTerminating() throws Exception { // NOPMD
// empty default implementation
}
......
......
......@@ -34,7 +34,7 @@ public abstract class InterThreadPipe extends AbstractPipe {
}
@Override
public void reportNewElement() {
public void reportNewElement() { // NOPMD
// do nothing
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment