Skip to content

Commit

Permalink
Updated the regex pattern of version that can be used with super dev …
Browse files Browse the repository at this point in the history
…mode to support gwt 2.10. (#459)
  • Loading branch information
safy97 committed Mar 2, 2023
1 parent 317bf57 commit ee474e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ protected void updateLaunchConfigurationDialog() {
* @return true if super dev mode can be used
*/
private boolean canSdkVersionUseSuperDevMode(String version) {
return version.matches("^2.[5-9].*") || version.matches("^[3-9].*");
return version.matches("^2.([5-9]|1\\d).*") || version.matches("^[3-9].*");
}

/**
Expand Down

0 comments on commit ee474e5

Please sign in to comment.