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 ab2610b commit 522fd34Copy full SHA for 522fd34
build.properties
@@ -1,4 +1,4 @@
1
-strongback.version=1.2.0-Beta1
+strongback.version=1.2.0-Beta2
2
#
3
# The build will download a specific version of the WPILib given by the following URL
4
# and install it into the 'libs/wpilib' folder. To use a different version of WPILib,
strongback/src/org/strongback/Strongback.java
@@ -1271,8 +1271,10 @@ public boolean isRunning() {
1271
return running.get();
1272
}
1273
1274
- public void pause() {
1275
- executor.stop();
+ public synchronized void pause() {
+ if (running.get()) {
1276
+ executor.stop();
1277
+ }
1278
1279
1280
/**
0 commit comments