Skip to content

Commit aff916e

Browse files
authored
[hotfix] Avoid duplicate call on checkNotNull (#26429)
1 parent 0053b41 commit aff916e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,7 @@ private <T> Configuration getEffectiveConfiguration(
311311
getEffectiveConfiguration(activeCustomCommandLine, commandLine);
312312

313313
final ExecutionConfigAccessor executionParameters =
314-
ExecutionConfigAccessor.fromProgramOptions(
315-
checkNotNull(programOptions), checkNotNull(jobJars));
314+
ExecutionConfigAccessor.fromProgramOptions(programOptions, jobJars);
316315

317316
executionParameters.applyToConfiguration(effectiveConfiguration);
318317

0 commit comments

Comments
 (0)