/*
- * Copyright 2000-2014 JetBrains s.r.o.
+ * Copyright 2000-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
}
};
- protected Language(@NotNull @NonNls String id) {
- this(id, ArrayUtil.EMPTY_STRING_ARRAY);
+ protected Language(@NotNull @NonNls String ID) {
+ this(ID, ArrayUtil.EMPTY_STRING_ARRAY);
}
protected Language(@NotNull @NonNls final String ID, @NotNull @NonNls final String... mimeTypes) {
}
/** Fake language identifier without registering */
- protected Language(@NotNull String id, @SuppressWarnings("UnusedParameters") boolean register) {
- myID = id;
+ protected Language(@NotNull String ID, @SuppressWarnings("UnusedParameters") boolean register) {
+ myID = ID;
myBaseLanguage = null;
myMimeTypes = null;
}