mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Bug fix in name generator: digital character should not be ignored.
This commit is contained in:
@@ -31,7 +31,7 @@ import java.util.regex.Pattern;
|
||||
*/
|
||||
public class GroovyNamesUtil {
|
||||
|
||||
private static final Pattern PATTERN = Pattern.compile("[A-Za-z][a-z]*");
|
||||
private static final Pattern PATTERN = Pattern.compile("[A-Za-z][a-z0-9]*");
|
||||
|
||||
private GroovyNamesUtil() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user