langtools/test/tools/jdeps/lib/JdepsUtil.java
changeset 40308 274367a99f98
parent 38530 8e89d567748c
child 41442 14db641d4a9f
equal deleted inserted replaced
40306:1a0fcaf3f2ed 40308:274367a99f98
   196             return new DepsAnalyzer(configuration(), filter.build(), writer(),
   196             return new DepsAnalyzer(configuration(), filter.build(), writer(),
   197                                     verbose, apiOnly);
   197                                     verbose, apiOnly);
   198         }
   198         }
   199 
   199 
   200         public ModuleAnalyzer getModuleAnalyzer(Set<String> mods) throws IOException {
   200         public ModuleAnalyzer getModuleAnalyzer(Set<String> mods) throws IOException {
   201             // if -check is set, add to the root set and all modules are observable
   201             // if --check is set, add to the root set and all modules are observable
   202             addmods(mods);
   202             addmods(mods);
   203             builder.allModules();
   203             builder.allModules();
   204             return new ModuleAnalyzer(configuration(), pw, mods);
   204             return new ModuleAnalyzer(configuration(), pw, mods);
   205         }
   205         }
   206 
   206