Skip to content

Commit

Permalink
Trivial refactoring: replace argument with empty array
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellansun committed Jan 19, 2025
1 parent c04e312 commit d80cc86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public class CompilerConfiguration {
/**
* The valid targetBytecode values.
*/
public static final String[] ALLOWED_JDKS = JDK_TO_BYTECODE_VERSION_MAP.keySet().toArray(new String[JDK_TO_BYTECODE_VERSION_MAP.size()]);
public static final String[] ALLOWED_JDKS = JDK_TO_BYTECODE_VERSION_MAP.keySet().toArray(new String[0]);

/**
* The ASM API version used when loading/parsing classes and generating proxy adapter classes.
Expand Down

0 comments on commit d80cc86

Please # to comment.