Skip to content

Commit ef502c2

Browse files
committed
fix(PostProcessFileReplace): don't use _ as lambda param
1 parent 6ea4534 commit ef502c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/generators/shared/PostProcessFileReplace.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static List<OverrideConfig> load(String configPackage) throws IOException
8585
overrideProps.stringPropertyNames().forEach(key -> {
8686
var prefixLen = key.indexOf('.');
8787
var prefix = key.substring(0, prefixLen);
88-
var config = byName.computeIfAbsent(prefix, (_) -> new OverrideConfig());
88+
var config = byName.computeIfAbsent(prefix, (name) -> new OverrideConfig());
8989
config.name = prefix;
9090
var suffix = key.substring(prefixLen + 1);
9191
switch (suffix) {

0 commit comments

Comments
 (0)