OpenJDK / jdk / jdk
changeset 58772:568c31f1cce0
8184249: SA: clhsdb 'intConstant' throws a NullPointerException when not attached to a VM
Reviewed-by: amenkov
author | cjplummer |
---|---|
date | Fri, 10 Apr 2020 14:00:49 -0700 |
parents | 5e4693618e1b |
children | 97d5d0cd1085 |
files | src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/CommandProcessor.java |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/CommandProcessor.java Fri Apr 10 16:33:56 2020 -0400 +++ b/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/CommandProcessor.java Fri Apr 10 14:00:49 2020 -0700 @@ -1205,7 +1205,7 @@ } } }, - new Command("intConstant", "intConstant [ name [ value ] ]", true) { + new Command("intConstant", "intConstant [ name [ value ] ]", false) { public void doit(Tokens t) { if (t.countTokens() != 1 && t.countTokens() != 0 && t.countTokens() != 2) { usage(); @@ -1228,7 +1228,7 @@ } } }, - new Command("longConstant", "longConstant [ name [ value ] ]", true) { + new Command("longConstant", "longConstant [ name [ value ] ]", false) { public void doit(Tokens t) { if (t.countTokens() != 1 && t.countTokens() != 0 && t.countTokens() != 2) { usage(); @@ -1251,7 +1251,7 @@ } } }, - new Command("field", "field [ type [ name fieldtype isStatic offset address ] ]", true) { + new Command("field", "field [ type [ name fieldtype isStatic offset address ] ]", false) { public void doit(Tokens t) { if (t.countTokens() != 1 && t.countTokens() != 0 && t.countTokens() != 6) { usage(); @@ -1323,7 +1323,7 @@ } } }, - new Command("type", "type [ type [ name super isOop isInteger isUnsigned size ] ]", true) { + new Command("type", "type [ type [ name super isOop isInteger isUnsigned size ] ]", false) { public void doit(Tokens t) { if (t.countTokens() != 1 && t.countTokens() != 0 && t.countTokens() != 6) { usage();