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

fixed PMD issues

parent 96093945
No related branches found
No related tags found
No related merge requests found
#FindBugs User Preferences #FindBugs User Preferences
#Wed Dec 17 07:36:29 CET 2014 #Wed Dec 17 07:37:54 CET 2014
detector_threshold=3 detector_threshold=3
effort=max effort=max
excludefilter0=.fbExcludeFilterFile|true excludefilter0=.fbExcludeFilterFile|true
......
...@@ -11,7 +11,8 @@ import teetime.framework.validation.AnalysisNotValidException; ...@@ -11,7 +11,8 @@ import teetime.framework.validation.AnalysisNotValidException;
public class RunnableStage implements Runnable { public class RunnableStage implements Runnable {
private final Stage stage; private final Stage stage;
private final Logger logger; @SuppressWarnings("PMD.LoggerIsNotStaticFinal")
private final Logger logger;
private boolean validationEnabled; private boolean validationEnabled;
public RunnableStage(final Stage stage) { public RunnableStage(final Stage stage) {
......
...@@ -4,6 +4,7 @@ public final class TerminateException extends RuntimeException { ...@@ -4,6 +4,7 @@ public final class TerminateException extends RuntimeException {
private static final long serialVersionUID = 6841651916837487909L; private static final long serialVersionUID = 6841651916837487909L;
@SuppressWarnings("PMD.AvoidSynchronizedAtMethodLevel")
@Override @Override
public synchronized Throwable fillInStackTrace() { public synchronized Throwable fillInStackTrace() {
return this; return this;
......
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