Skip to content

Commit ee474e5

Browse files
authored
Updated the regex pattern of version that can be used with super dev mode to support gwt 2.10. (#459)
1 parent 317bf57 commit ee474e5

File tree

1 file changed

+1
-1
lines changed
  • plugins/com.gwtplugins.gwt.eclipse.core/src/com/google/gwt/eclipse/core/launch/ui/tabs

1 file changed

+1
-1
lines changed

plugins/com.gwtplugins.gwt.eclipse.core/src/com/google/gwt/eclipse/core/launch/ui/tabs/GWTSettingsTab.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ protected void updateLaunchConfigurationDialog() {
744744
* @return true if super dev mode can be used
745745
*/
746746
private boolean canSdkVersionUseSuperDevMode(String version) {
747-
return version.matches("^2.[5-9].*") || version.matches("^[3-9].*");
747+
return version.matches("^2.([5-9]|1\\d).*") || version.matches("^[3-9].*");
748748
}
749749

750750
/**

0 commit comments

Comments
 (0)