Skip to content

Commit a8fe891

Browse files
committed
String concatenation
1 parent 7211c05 commit a8fe891

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/com/inet/gradle/setup/dmg/DmgBuilder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -527,10 +527,10 @@ private void applescript() throws IOException {
527527
applescript.setPlaceholder( "executable", firstExecutableName );
528528

529529
applescript.setPlaceholder( "backgroundColor", task.getBackgroundColor() );
530-
applescript.setPlaceholder( "windowWidth", task.getWindowWidth().toString() );
531-
applescript.setPlaceholder( "windowHeight", task.getWindowHeight().toString() );
532-
applescript.setPlaceholder( "iconSize", task.getIconSize().toString() );
533-
applescript.setPlaceholder( "fontSize", task.getFontSize().toString() );
530+
applescript.setPlaceholder( "windowWidth", ""+task.getWindowWidth() );
531+
applescript.setPlaceholder( "windowHeight", ""+task.getWindowHeight() );
532+
applescript.setPlaceholder( "iconSize", ""+task.getIconSize() );
533+
applescript.setPlaceholder( "fontSize", ""+task.getFontSize() );
534534

535535
if( task.getBackgroundImage() != null ) {
536536
String name = task.getBackgroundImage().getName();

0 commit comments

Comments
 (0)