Code smells fix

This commit is contained in:
Claudio Maggioni (maggicl) 2020-05-23 23:29:49 +02:00
parent 79df130868
commit 3fc5d9bfcb

View file

@ -9,7 +9,7 @@ import lombok.EqualsAndHashCode;
/** A device that can be turned either on or off */
@Entity
@EqualsAndHashCode(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@Inheritance(strategy = InheritanceType.JOINED)
public abstract class Switchable extends OutputDevice {