1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

RESOLVED - bug 171001: Request to make CDT function CConventions.isLegalIdentifier(String) public

https://bugs.eclipse.org/bugs/show_bug.cgi?id=171001
This commit is contained in:
Chris Recoskie 2007-02-02 15:57:30 +00:00
parent b030a24add
commit 705e64de6c

View file

@ -38,7 +38,7 @@ public class CConventions {
private final static String ILLEGAL_FILE_CHARS = "/\\:<>?*|\""; //$NON-NLS-1$
private static boolean isLegalIdentifier(String name) {
public static boolean isLegalIdentifier(String name) {
if (name == null) {
return false;
}