add null point

This commit is contained in:
cj li 2020-05-10 14:56:55 +09:00
parent adab01ef62
commit 46c2356a51

View file

@ -88,9 +88,9 @@ public class Pet extends NamedEntity {
}
protected Set<Visit> getVisitsInternal() {
if (this.visits == null) {
this.visits = new HashSet<>();
}
// if (this.visits == null) {
// this.visits = new HashSet<>();
// }
return this.visits;
}