mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
change setOwner() method scope to public
This commit is contained in:
parent
dbb06c1099
commit
93738227b4
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ public class Pet extends NamedEntity {
|
||||||
return this.owner;
|
return this.owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void setOwner(Owner owner) {
|
public void setOwner(Owner owner) {
|
||||||
this.owner = owner;
|
this.owner = owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue