diff --git a/pom.xml b/pom.xml index 760c9909..1bb69920 100644 --- a/pom.xml +++ b/pom.xml @@ -52,7 +52,7 @@ 17.0.10 8 - 7.17.0 + 7.18.0 1.9 1.9 1.${java.version} @@ -78,7 +78,7 @@ 35 3.28.0 - 7.17.0 + 7.18.0 ${project.build.directory}/generated-sources/jflex diff --git a/src/main/java/net/sourceforge/pmd/util/fxdesigner/util/reactfx/DistinctBetweenStream.java b/src/main/java/net/sourceforge/pmd/util/fxdesigner/util/reactfx/DistinctBetweenStream.java index 7719b956..f9cdfa0a 100644 --- a/src/main/java/net/sourceforge/pmd/util/fxdesigner/util/reactfx/DistinctBetweenStream.java +++ b/src/main/java/net/sourceforge/pmd/util/fxdesigner/util/reactfx/DistinctBetweenStream.java @@ -33,7 +33,6 @@ public final class DistinctBetweenStream extends EventStreamBase { private final Timer timer; private Object previous = NONE; - @SuppressWarnings("PMD.AssignmentInOperand") // https://github.com/pmd/pmd/issues/6075 private DistinctBetweenStream(EventStream input, Function timerFactory) { this.input = input; this.timer = timerFactory.apply(() -> previous = NONE);