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

fixed red-flagged PMD issues

parent 46bc60f7
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,8 @@ abstract class AbstractTrigger<I, T, O> extends AbstractStage { ...@@ -14,6 +14,8 @@ abstract class AbstractTrigger<I, T, O> extends AbstractStage {
super(); super();
} }
@SuppressWarnings("PMD.EmptyMethodInAbstractClassShouldBeAbstract")
// disabled while in development
@Override @Override
protected void executeWithPorts() { protected void executeWithPorts() {
// TODO Auto-generated method stub // TODO Auto-generated method stub
......
...@@ -121,7 +121,7 @@ public class RunnableConsumerStageTest { ...@@ -121,7 +121,7 @@ public class RunnableConsumerStageTest {
for (Pair<Thread, Throwable> pair : exceptions) { for (Pair<Thread, Throwable> pair : exceptions) {
System.err.println(pair.getSecond()); System.err.println(pair.getSecond());
System.err.println(Joiner.on("\n").join(pair.getSecond().getStackTrace())); System.err.println(Joiner.on("\n").join(pair.getSecond().getStackTrace()));
throw new RuntimeException(pair.getSecond()); throw new AssertionError(pair.getSecond());
} }
assertEquals(0, exceptions.size()); assertEquals(0, exceptions.size());
} }
......
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