param is final

This commit is contained in:
Peter Hormanns 2017-07-12 18:19:53 +02:00
parent 352bc4c083
commit c826fc5170

View File

@ -27,7 +27,7 @@ public class CustomerDao {
return findCustomerByNameImpl(customerName); return findCustomerByNameImpl(customerName);
} }
public Customer findCustomerByName(CustomerVO prototype) throws UserException, TechnicalException { public Customer findCustomerByName(final CustomerVO prototype) throws UserException, TechnicalException {
return findCustomerByNameImpl(prototype.get("name").getValue()); return findCustomerByNameImpl(prototype.get("name").getValue());
} }