Skip to content
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.

Commit

Permalink
style: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rememberYou committed Aug 9, 2020
1 parent 90c1ed8 commit ea1ebb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/be/heh/plcmonitor/plc/ControlLevel.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ControlLevel {
*
* @return true if the configuration is manual; false otherwise
*/
public boolean isManual() { return S7.GetBitAt(data, 0,5); }
public boolean isManual() { return S7.GetBitAt(data, 0, 5); }

/**
* Checks if valve 1 is open.
Expand Down Expand Up @@ -74,7 +74,7 @@ public class ControlLevel {
*
* @return true if the PLC is remotely controllable; false otherwise
*/
public boolean isRemotelyControllable() { return S7.GetBitAt(data, 0,6); }
public boolean isRemotelyControllable() { return S7.GetBitAt(data, 0, 6); }

/**
* Get the manual value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public boolean isPillsRequest() {
*
* @return true if the PLC is remotely controllable; false otherwise
*/
public boolean isRemotelyControllable() { return S7.GetBitAt(data, 1,6); }
public boolean isRemotelyControllable() { return S7.GetBitAt(data, 1, 6); }

/**
* Checks the status of the conveyor motor
Expand Down

0 comments on commit ea1ebb6

Please sign in to comment.