Skip to content

Commit c4e5a9a

Browse files
committed
use int
1 parent ce96e86 commit c4e5a9a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/hotspot/jtreg/runtime/Thread/AsyncExceptionTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ public void internalRun1() {
9090

9191
public void internalRun2() {
9292
try {
93-
Integer myLocalCount = 1;
94-
Integer myLocalCount2 = 1;
93+
int myLocalCount = 1;
94+
int myLocalCount2 = 1;
9595

96-
while(myLocalCount > 0) {
96+
while (myLocalCount > 0) {
9797
myLocalCount2 = (myLocalCount % 3) / 2;
9898
myLocalCount -= 1;
9999
}

0 commit comments

Comments
 (0)