Skip to content

Commit 56341fb

Browse files
committed
Boxing
1 parent 1f106c5 commit 56341fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/inet/gradle/appbundler/OSXNotarize.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@ private void checkForRunningNotarizationProcess() {
330330
System.out.println( "Response: `" + output + "`" );
331331
}
332332

333-
Integer lineCount = new Integer( output );
334-
if ( lineCount == 0 ) {
333+
Integer lineCount = Integer.valueOf( output );
334+
if ( lineCount.intValue() == 0 ) {
335335
return; // Done
336336
}
337337

0 commit comments

Comments
 (0)