Skip to content

Commit

Permalink
updates for web
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyredhat committed Oct 12, 2020
1 parent a0b61cd commit e31dd15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public List<Visit> findByMultiPetIds(List<Long> petIds) {
@Transactional
public void save(Visit theVisit) {

System.out.println("saving: " + theVisit);
theVisit.persist();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public List<Owner> findByLastName(String lastName) {

public Owner findById(Long id) {
Owner theOwner = Owner.findById(id.longValue());
assignPetVisits(theOwner);
// assignPetVisits(theOwner);

assignPetVisitsMulti(theOwner);

Expand Down

0 comments on commit e31dd15

Please sign in to comment.