Make PlatformUser abstract

This commit is contained in:
Tobias Eidelpes 2021-04-04 17:46:34 +02:00
parent c0658a1bec
commit 95c96e5a5f

View File

@ -9,7 +9,7 @@ import javax.persistence.MappedSuperclass;
import java.io.Serializable;
@MappedSuperclass
public class PlatformUser implements IPlatformUser, Serializable {
public abstract class PlatformUser implements IPlatformUser, Serializable {
@Id @GeneratedValue
protected Long id;