Skip to content

Commit 25134bb

Browse files
author
Quang Tran
committed
IDE-2477: minor fix
1 parent 9b9f039 commit 25134bb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

plugins/eu.numberfour.n4jsx/src/eu/numberfour/n4jsx/N4JSXGlobals.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@
1111
package eu.numberfour.n4jsx;
1212

1313
/**
14-
* Global hook for static information about the current setup.
15-
*
16-
* Start up code must initialize static attributes here.
17-
*
14+
* Globals for N4JSX sub-language
1815
*/
19-
public class N4JSXGlobals {
16+
public final class N4JSXGlobals {
2017

2118
/**
2219
* Files extension of JSX source files (<b>not</b> including the separator dot).
@@ -27,4 +24,8 @@ public class N4JSXGlobals {
2724
* Files extension of N4JSX source files (<b>not</b> including the separator dot).
2825
*/
2926
public static final String N4JSX_FILE_EXTENSION = "n4jsx";
27+
28+
private N4JSXGlobals() {
29+
// private to prevent inheritance & instantiation.
30+
}
3031
}

0 commit comments

Comments
 (0)