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:
parent
b030a24add
commit
705e64de6c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue