Code smells fix
This commit is contained in:
parent
3fc5d9bfcb
commit
d63ec73127
1 changed files with 0 additions and 3 deletions
|
@ -5,11 +5,9 @@ import ch.usi.inf.sa4.sanmarinoes.smarthut.config.SocketGsonExclude;
|
|||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import javax.persistence.*;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/** A device that can be turned either on or off */
|
||||
@Entity
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
public abstract class Switchable extends OutputDevice {
|
||||
|
||||
|
@ -23,7 +21,6 @@ public abstract class Switchable extends OutputDevice {
|
|||
})
|
||||
@GsonExclude
|
||||
@SocketGsonExclude
|
||||
@EqualsAndHashCode.Exclude
|
||||
private Set<Switch> inputs = new HashSet<>();
|
||||
|
||||
protected Switchable(String kind) {
|
||||
|
|
Loading…
Reference in a new issue