Skip to content

Commit 782842e

Browse files
committed
Fix double space in UnsatisfiedLinkError message
1 parent c6919d6 commit 782842e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/processing/mode/java/runner/Runner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ public static boolean handleCommonErrors(final String exceptionClass,
668668
listener.statusError("A library used by this sketch is not installed properly.");
669669
err.println("A library relies on native code that's not available.");
670670
err.println("Or only works properly when the sketch is run as a " +
671-
((Base.getNativeBits() == 32) ? "64-bit " : "32-bit ") + " application.");
671+
((Base.getNativeBits() == 32) ? "64-bit" : "32-bit") + " application.");
672672

673673
} else if (exceptionClass.equals("java.lang.StackOverflowError")) {
674674
listener.statusError("StackOverflowError: This sketch is attempting too much recursion.");

0 commit comments

Comments
 (0)