Browse Source

fix typo

pull/51/head
Jonathan Cobb 4 years ago
parent
commit
147a33f84f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bubble-server/src/main/java/bubble/model/device/FlexRouter.java

+ 1
- 1
bubble-server/src/main/java/bubble/model/device/FlexRouter.java View File

@@ -110,6 +110,6 @@ public class FlexRouter extends IdentifiableBase implements HasAccount {
// otherwise it would never sleep
private boolean noInterrupt = false;
public FlexRouter noInterrupt () { noInterrupt = true; return this; }
public boolean doInterrupt () { !noInterrupt; }
public boolean doInterrupt () { return !noInterrupt; }

}

Loading…
Cancel
Save