Skip to content

Commit

Permalink
TirePressureMonitoringSystem/Java: changed visibility from default/pa…
Browse files Browse the repository at this point in the history
…ckage to private as is in the C# version.
  • Loading branch information
Luca Minudel committed Nov 8, 2013
1 parent 39e2941 commit 6406886
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -5,9 +5,9 @@ public class Alarm
private final double LowPressureThreshold = 17;
private final double HighPressureThreshold = 21;

Sensor sensor = new Sensor();
private Sensor sensor = new Sensor();

boolean alarmOn = false;
private boolean alarmOn = false;

public void check()
{
Expand Down

0 comments on commit 6406886

Please sign in to comment.