We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f106c5 commit 56341fbCopy full SHA for 56341fb
src/com/inet/gradle/appbundler/OSXNotarize.java
@@ -330,8 +330,8 @@ private void checkForRunningNotarizationProcess() {
330
System.out.println( "Response: `" + output + "`" );
331
}
332
333
- Integer lineCount = new Integer( output );
334
- if ( lineCount == 0 ) {
+ Integer lineCount = Integer.valueOf( output );
+ if ( lineCount.intValue() == 0 ) {
335
return; // Done
336
337
0 commit comments