We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae324b9 commit 0c4996cCopy full SHA for 0c4996c
src/env/artifact/environment/roomartifact/Heater.java
@@ -38,14 +38,14 @@ void init(final String roomId) {
38
public final void turnOn() {
39
Logger.getLogger(Heater.class.toString()).info("[" + this.getRoomId().getId() + "] "
40
+ this.getActuatorID().getId() + " ON");
41
- actuator.turnOn(this.wotInvoker);
+ this.actuator.turnOn(this.wotInvoker);
42
}
43
44
@Override
45
@OPERATION
46
public final void turnOff() {
47
48
+ this.getActuatorID().getId() + " OFF");
49
- actuator.turnOff(this.wotInvoker);
+ this.actuator.turnOff(this.wotInvoker);
50
51
0 commit comments