File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/github/markusbernhardt/xmldoclet Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class XmlDoclet implements Doclet {
39
39
/**
40
40
* The parsed object model. Used in unit tests.
41
41
*/
42
- static Root root ;
42
+ private Root root ;
43
43
44
44
/**
45
45
* The Options instance to parse command line strings,
@@ -76,7 +76,7 @@ public String getName() {
76
76
77
77
@ Override
78
78
public Set <? extends CustomOption > getSupportedOptions () {
79
- return options ;
79
+ return Collections . unmodifiableSet ( options ) ;
80
80
}
81
81
82
82
@ Override
@@ -159,7 +159,7 @@ public static void transform(
159
159
* @param commandLine the parsed command line arguments
160
160
* @param root the document root
161
161
*/
162
- public static void save (final CommandLine commandLine , final Root root ) {
162
+ public void save (final CommandLine commandLine , final Root root ) {
163
163
if (commandLine .hasOption ("dryrun" )) {
164
164
return ;
165
165
}
You can’t perform that action at this time.
0 commit comments