File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
json-api/src/main/java/io/github/xmljim/json/api Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,27 +33,27 @@ public final class JsonApi {
33
33
/**
34
34
* JsonPath ({@link JsonPathFactory}) API functionality
35
35
*/
36
- public static JsonPathApi JsonPath = new JsonPathApi ();
36
+ public static final JsonPathApi JsonPath = new JsonPathApi ();
37
37
38
38
/**
39
39
* JsonParser ({@link ParserFactory}) API functionality
40
40
*/
41
- public static JsonParserApi JsonParser = new JsonParserApi ();
41
+ public static final JsonParserApi JsonParser = new JsonParserApi ();
42
42
43
43
/**
44
44
* JsonElement ({@link ElementFactory}) functionality
45
45
*/
46
- public static ElementApi JsonElement = new ElementApi ();
46
+ public static final ElementApi JsonElement = new ElementApi ();
47
47
48
48
/**
49
49
* JsonMerge ({@link MergeFactory}) functionality
50
50
*/
51
- public static JsonMergeApi JsonMerge = new JsonMergeApi ();
51
+ public static final JsonMergeApi JsonMerge = new JsonMergeApi ();
52
52
53
53
/**
54
54
* JsonMapper ({@link MapperFactory}) functionality
55
55
*/
56
- public static JsonMapperApi JsonMapper = new JsonMapperApi ();
56
+ public static final JsonMapperApi JsonMapper = new JsonMapperApi ();
57
57
58
58
/**
59
59
* Private constructor, use static fields instead
You can’t perform that action at this time.
0 commit comments