mirror of
https://github.com/jlengrand/spring-petclinic.git
synced 2026-03-10 08:41:24 +00:00
Remove redundant interface
This commit is contained in:
@@ -15,11 +15,10 @@
|
||||
*/
|
||||
package org.springframework.samples.petclinic.vet;
|
||||
|
||||
import org.springframework.samples.petclinic.model.NamedEntity;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.springframework.samples.petclinic.model.NamedEntity;
|
||||
|
||||
/**
|
||||
* Models a {@link Vet Vet's} specialty (for example, dentistry).
|
||||
@@ -28,6 +27,6 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Entity
|
||||
@Table(name = "specialties")
|
||||
public class Specialty extends NamedEntity implements Serializable {
|
||||
public class Specialty extends NamedEntity {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user