Fix a warning from Hibernate (#645)

Hibernate complained that ContactResource.getTransferData should not be
final:
WARN: HHH000305: Could not create proxy factory
for:google.registry.model.contact.ContactResource
org.hibernate.HibernateException: Getter methods of lazy classes cannot
be final: google.registry.model.contact.ContactResource#getTransferData
This commit is contained in:
Shicong Huang 2020-06-24 10:02:42 -04:00 committed by GitHub
parent 51a67db19c
commit e73e5defc2

View file

@ -251,7 +251,7 @@ public class ContactResource extends EppResource
}
@Override
public final ContactTransferData getTransferData() {
public ContactTransferData getTransferData() {
return Optional.ofNullable(transferData).orElse(ContactTransferData.EMPTY);
}