Skip to content

Commit

Permalink
Fix new spotbug issues
Browse files Browse the repository at this point in the history
  • Loading branch information
big-andy-coates committed Jan 18, 2024
1 parent 234d96e commit 9450861
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,18 @@ public void verificationTimeout(final Duration timeout) {

/**
* @return list of additional arguments to pass to the test executor
* <p>See https://github.com/creek-service/creek-system-test/tree/main/executor for more
* info.
* <p>See <a
* href="https://github.com/creek-service/creek-system-test/tree/main/executor">Executor
* docs</a> for more info.
*/
public abstract ListProperty<String> getExtraArguments();

/**
* Set additional args to pass to the test executor.
*
* <p>See https://github.com/creek-service/creek-system-test/tree/main/executor for more info.
* <p>See <a
* href="https://github.com/creek-service/creek-system-test/tree/main/executor">Executor
* docs</a> for more info.
*
* @param args the extra args to use when running system tests.
*/
Expand All @@ -108,4 +111,9 @@ public DebugExtension getDebugging() {
public void debugging(final Action<DebugExtension> action) {
action.execute(debugExt);
}

// Avoid finalizer attacks: spotbugs CT_CONSTRUCTOR_THROW
@SuppressWarnings("deprecation")
@Override
protected final void finalize() {}
}

0 comments on commit 9450861

Please sign in to comment.