Fixed recursive issue with dummy event and reduce update time for gui selections
This commit is contained in:
parent
5e31cea660
commit
9e58387ef7
2 changed files with 4 additions and 2 deletions
|
|
@ -8,6 +8,8 @@ import se.hal.plugin.dummy.DummyController;
|
|||
import se.hal.plugin.dummy.DummyDevice;
|
||||
import se.hal.struct.devicedata.OnOffEventData;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class DummySwitchEvent implements DummyDevice, HalEventConfig {
|
||||
|
||||
|
||||
|
|
@ -32,6 +34,6 @@ public class DummySwitchEvent implements DummyDevice, HalEventConfig {
|
|||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
return this.equals(obj);
|
||||
return super.equals(obj);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue