Skip to content

Commit

Permalink
Update bundles/org.openhab.binding.pentair/src/main/java/org/openhab/…
Browse files Browse the repository at this point in the history
…binding/pentair/internal/PentairControllerSchedule.java

Co-authored-by: Fabian Wolter <github@fabian-wolter.de>
  • Loading branch information
jsjames and fwolter authored Nov 1, 2020
1 parent 2468798 commit 693a2d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public boolean setScheduleCircuit(int c) {
return true;
}

if (c > 18 | c <= 0) {
if (c > 18 || c <= 0) {
return false;
}

Expand Down

0 comments on commit 693a2d4

Please sign in to comment.