From 705e64de6c265a340eb48f7c1b30e2160a7f7b2d Mon Sep 17 00:00:00 2001 From: Chris Recoskie Date: Fri, 2 Feb 2007 15:57:30 +0000 Subject: [PATCH] RESOLVED - bug 171001: Request to make CDT function CConventions.isLegalIdentifier(String) public https://bugs.eclipse.org/bugs/show_bug.cgi?id=171001 --- .../src/org/eclipse/cdt/core/CConventions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CConventions.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CConventions.java index 2787a16ddc4..d14f7c77a54 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CConventions.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CConventions.java @@ -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; }