From 1654acd1ae1245a73c7dbced45b56483ff57994e Mon Sep 17 00:00:00 2001 From: Thad House Date: Mon, 9 Dec 2024 21:55:20 -0800 Subject: [PATCH] Formatting --- wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java b/wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java index 1ea68a1c56b..b1b7ada61a4 100644 --- a/wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java +++ b/wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java @@ -27,9 +27,9 @@ private static String getLoadErrorMessage(String libraryName, UnsatisfiedLinkErr .append(String.format("JVM Location: %s\n", jvmLocation)); if (System.getProperty("os.name").startsWith("Windows")) { msg.append( - "A common cause of this error is using a JVM with an incorrect MSVC runtime.\n") - .append("Ensure you are using the WPILib JVM (The current running JVM is listed above\n") - .append("See https://wpilib.org/jvmruntime for more information\n"); + "A common cause of this error is using a JVM with an incorrect MSVC runtime.\n" + + "Ensure you are using the WPILib JVM (The current running JVM is listed above\n" + + "See https://wpilib.org/jvmruntime for more information\n"); } return msg.toString(); }