mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
Remove redundant interface
This commit is contained in:
parent
3eba970fff
commit
4f2f8fab73
1 changed files with 3 additions and 4 deletions
|
@ -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 {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue