Skip to content

Commit

Permalink
IDEA-185355 Digit support in VMOptions.writeOption
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Jan 22, 2018
1 parent 8042cda commit c600414
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public static void writeOption(@NotNull MemoryKind option, int value) {
}

public static void writeOption(@NotNull String option, @NotNull String separator, @NotNull String value) {
writeGeneralOption(Pattern.compile("-D" + option + separator + "(true|false)*([a-zA-Z]*)"), "-D" + option + separator + value);
writeGeneralOption(Pattern.compile("-D" + option + separator + "(true|false)*([a-zA-Z0-9]*)"), "-D" + option + separator + value);
}


Expand Down

0 comments on commit c600414

Please sign in to comment.