Skip to content

Commit 8a84dc2

Browse files
use underscores for unused lambda parameter
Co-authored-by: Marc Philipp <[email protected]>
1 parent 762c39a commit 8a84dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

junit-jupiter-params/src/main/java/org/junit/jupiter/params/ParameterizedTestExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private ArgumentCountValidationMode getArgumentCountValidationModeConfiguration(
154154
String key = ARGUMENT_COUNT_VALIDATION_KEY;
155155
ArgumentCountValidationMode fallback = ArgumentCountValidationMode.NONE;
156156
ExtensionContext.Store store = getStoreInExtensionNamespace(extensionContext);
157-
return store.getOrComputeIfAbsent(key, k -> {
157+
return store.getOrComputeIfAbsent(key, __ -> {
158158
Optional<String> optionalConfigValue = extensionContext.getConfigurationParameter(key);
159159
if (optionalConfigValue.isPresent()) {
160160
String configValue = optionalConfigValue.get();

0 commit comments

Comments
 (0)