1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

RESOLVED - bug 184442: UPCLanguage has typo in PLUGIN_ID

https://bugs.eclipse.org/bugs/show_bug.cgi?id=184442
This commit is contained in:
Chris Recoskie 2007-04-27 15:06:03 +00:00
parent e129ae7c03
commit c7e6e87019
2 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,5 @@
# properties file for org.eclipse.cdt.core.parser.c99
Bundle-Name.0 = C99 Parser Plug-in
# properties file for org.eclipse.cdt.core.parser.upc
Bundle-Name.0 = UPC Parser Plug-in
Bundle-Vendor.0 = Eclipse.org
Bundle-Name.1 = C99 Parser Plug-in
Bundle-Name.1 = UPC Parser Plug-in
upcSourceName = UPC Source File

View file

@ -27,7 +27,7 @@ import org.eclipse.cdt.internal.core.dom.parser.upc.UPCParser;
public class UPCLanguage extends C99Language {
// TODO: this should probably go somewhere else
public static final String PLUGIN_ID = "org.eclipse.cdt.core.parser.c99"; //$NON-NLS-1$
public static final String PLUGIN_ID = "org.eclipse.cdt.core.parser.upc"; //$NON-NLS-1$
public static final String ID = PLUGIN_ID + ".upc"; //$NON-NLS-1$
private static UPCKeywordMap keywordMap = new UPCKeywordMap();