We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce96e86 commit c4e5a9aCopy full SHA for c4e5a9a
1 file changed
test/hotspot/jtreg/runtime/Thread/AsyncExceptionTest.java
@@ -90,10 +90,10 @@ public void internalRun1() {
90
91
public void internalRun2() {
92
try {
93
- Integer myLocalCount = 1;
94
- Integer myLocalCount2 = 1;
+ int myLocalCount = 1;
+ int myLocalCount2 = 1;
95
96
- while(myLocalCount > 0) {
+ while (myLocalCount > 0) {
97
myLocalCount2 = (myLocalCount % 3) / 2;
98
myLocalCount -= 1;
99
}
0 commit comments