8152847: JDI use of sun.boot.class.path needs to be updated for Jigsaw
Remove references to bootclasspath Reviewed-by: alanb, sspitsyn
This commit is contained in:
parent
72f951e112
commit
3f6fc8998d
jdk/src/jdk.jdi/share/classes/com/sun/tools
@ -1534,7 +1534,6 @@ class Commands {
|
||||
PathSearchingVirtualMachine vm = (PathSearchingVirtualMachine)Env.vm();
|
||||
MessageOutput.println("base directory:", vm.baseDirectory());
|
||||
MessageOutput.println("classpath:", vm.classPath().toString());
|
||||
MessageOutput.println("bootclasspath:", vm.bootClassPath().toString());
|
||||
} else {
|
||||
MessageOutput.println("The VM does not use paths");
|
||||
}
|
||||
|
@ -74,7 +74,6 @@ public class TTYResources extends java.util.ListResourceBundle {
|
||||
{"Array element is not a method", "Array element is not a method"},
|
||||
{"Array index must be a integer type", "Array index must be a integer type"},
|
||||
{"base directory:", "base directory: {0}"},
|
||||
{"bootclasspath:", "bootclasspath: {0}"},
|
||||
{"Breakpoint hit:", "Breakpoint hit: "},
|
||||
{"breakpoint", "breakpoint {0}"},
|
||||
{"Breakpoints set:", "Breakpoints set:"},
|
||||
|
@ -74,7 +74,6 @@ public class TTYResources_ja extends java.util.ListResourceBundle {
|
||||
{"Array element is not a method", "\u914D\u5217\u8981\u7D20\u306F\u30E1\u30BD\u30C3\u30C9\u3067\u306F\u3042\u308A\u307E\u305B\u3093"},
|
||||
{"Array index must be a integer type", "\u914D\u5217\u306E\u6DFB\u3048\u5B57\u306F\u6574\u6570\u578B\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059"},
|
||||
{"base directory:", "\u30D9\u30FC\u30B9\u30FB\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA: {0}"},
|
||||
{"bootclasspath:", "\u30D6\u30FC\u30C8\u30FB\u30AF\u30E9\u30B9\u30D1\u30B9: {0}"},
|
||||
{"Breakpoint hit:", "\u30D2\u30C3\u30C8\u3057\u305F\u30D6\u30EC\u30FC\u30AF\u30DD\u30A4\u30F3\u30C8: "},
|
||||
{"breakpoint", "\u30D6\u30EC\u30FC\u30AF\u30DD\u30A4\u30F3\u30C8{0}"},
|
||||
{"Breakpoints set:", "\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u308B\u30D6\u30EC\u30FC\u30AF\u30DD\u30A4\u30F3\u30C8:"},
|
||||
|
@ -74,7 +74,6 @@ public class TTYResources_zh_CN extends java.util.ListResourceBundle {
|
||||
{"Array element is not a method", "\u6570\u7EC4\u5143\u7D20\u4E0D\u662F\u65B9\u6CD5"},
|
||||
{"Array index must be a integer type", "\u6570\u7EC4\u7D22\u5F15\u5FC5\u987B\u4E3A\u6574\u6570\u7C7B\u578B"},
|
||||
{"base directory:", "\u57FA\u76EE\u5F55: {0}"},
|
||||
{"bootclasspath:", "\u5F15\u5BFC\u7C7B\u8DEF\u5F84: {0}"},
|
||||
{"Breakpoint hit:", "\u65AD\u70B9\u547D\u4E2D: "},
|
||||
{"breakpoint", "\u65AD\u70B9{0}"},
|
||||
{"Breakpoints set:", "\u65AD\u70B9\u96C6:"},
|
||||
|
@ -1439,7 +1439,7 @@ class VirtualMachineImpl extends MirrorImpl
|
||||
}
|
||||
|
||||
public List<String> bootClassPath() {
|
||||
return Arrays.asList(getClasspath().bootclasspaths);
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
public String baseDirectory() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user