Skip to content
Snippets Groups Projects
Commit 4c01d60b authored by Mic's avatar Mic
Browse files

removing Serializable because it creates a lot of warnings

App should be as simple as possible for beginners
parent 6412e480
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
*/
package org.springframework.samples.petclinic.model;
import java.io.Serializable;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
......@@ -27,7 +29,7 @@ import javax.persistence.MappedSuperclass;
* @author Juergen Hoeller
*/
@MappedSuperclass
public class BaseEntity implements Serializable {
public class BaseEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
protected Integer id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment