We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9f039 commit 25134bbCopy full SHA for 25134bb
plugins/eu.numberfour.n4jsx/src/eu/numberfour/n4jsx/N4JSXGlobals.java
@@ -11,12 +11,9 @@
11
package eu.numberfour.n4jsx;
12
13
/**
14
- * Global hook for static information about the current setup.
15
- *
16
- * Start up code must initialize static attributes here.
17
+ * Globals for N4JSX sub-language
18
*/
19
-public class N4JSXGlobals {
+public final class N4JSXGlobals {
20
21
22
* Files extension of JSX source files (<b>not</b> including the separator dot).
@@ -27,4 +24,8 @@ public class N4JSXGlobals {
27
24
* Files extension of N4JSX source files (<b>not</b> including the separator dot).
28
25
29
26
public static final String N4JSX_FILE_EXTENSION = "n4jsx";
+
+ private N4JSXGlobals() {
+ // private to prevent inheritance & instantiation.
30
+ }
31
}
0 commit comments