< prev index next >

src/jdk.jdeps/share/classes/com/sun/tools/jdeps/ModuleDotGraph.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -257,11 +257,11 @@
 
         static final Set<String> JAVA_SE_SUBGRAPH = javaSE();
         static final Set<String> JDK_SUBGRAPH = jdk();
 
         private static Set<String> javaSE() {
-            String root = "java.se.ee";
+            String root = "java.se";
             ModuleFinder system = ModuleFinder.ofSystem();
             if (system.find(root).isPresent()) {
                 return Stream.concat(Stream.of(root),
                                      Configuration.empty().resolve(system,
                                                                    ModuleFinder.of(),
< prev index next >