Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse committed Dec 10, 2024
1 parent e499e9e commit 1654acd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wpiutil/src/main/java/edu/wpi/first/util/RuntimeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 1654acd

Please sign in to comment.