We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39abe5c commit 434009aCopy full SHA for 434009a
src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java
@@ -415,12 +415,7 @@ private Timing(TimingKind kind) {
415
start = System.nanoTime();
416
}
417
418
- @SuppressFBWarnings("RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE")
419
@Override public void close() {
420
- // it is possible for timings to be null if an old build (< v2686.v7c37e0578401) is being loaded from a saved state
421
- if (timings == null) {
422
- timings = new ConcurrentHashMap<>();
423
- }
424
timings.merge(kind.name(), System.nanoTime() - start, Long::sum);
425
426
0 commit comments