Skip to content

Commit

Permalink
Remove custom codec string support
Browse files Browse the repository at this point in the history
  • Loading branch information
IotaBread committed Dec 25, 2023
1 parent d7c51c6 commit 6219873
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ public JarIndexer withContext(EnigmaServiceContext<JarIndexerService> context) {
this.disableConstructorParametersIndexing = Arguments.isDisabled(context, Arguments.DISABLE_CONSTRUCTOR_PARAMS);
this.disableGetterSetterIndexing = Arguments.isDisabled(context, Arguments.DISABLE_GETTER_SETTER);

List<String> codecs = context.getArgument(Arguments.CUSTOM_CODECS)
.map(e -> e.map(s -> List.of(s.split(",[\n ]*")), Function.identity()))
List<String> codecs = context.getMultipleArguments(Arguments.CUSTOM_CODECS)
.orElse(List.of());
this.codecIndex.addCustomCodecs(codecs);

Expand Down

0 comments on commit 6219873

Please sign in to comment.