Merge branch 'tests' into 'dev'

Code smells fix

See merge request sa4-2020/the-sanmarinoes/backend!172
This commit is contained in:
Claudio Maggioni 2020-05-23 23:30:25 +02:00
commit 004ee4ff18

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 {