Skip to content

Commit 0c4996c

Browse files
style: conform to java style
1 parent ae324b9 commit 0c4996c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/env/artifact/environment/roomartifact/Heater.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ void init(final String roomId) {
3838
public final void turnOn() {
3939
Logger.getLogger(Heater.class.toString()).info("[" + this.getRoomId().getId() + "] "
4040
+ this.getActuatorID().getId() + " ON");
41-
actuator.turnOn(this.wotInvoker);
41+
this.actuator.turnOn(this.wotInvoker);
4242
}
4343

4444
@Override
4545
@OPERATION
4646
public final void turnOff() {
4747
Logger.getLogger(Heater.class.toString()).info("[" + this.getRoomId().getId() + "] "
4848
+ this.getActuatorID().getId() + " OFF");
49-
actuator.turnOff(this.wotInvoker);
49+
this.actuator.turnOff(this.wotInvoker);
5050
}
5151
}

0 commit comments

Comments
 (0)