package org.mxchange.jcontacts.model.contact;
import java.text.MessageFormat;
-import java.util.Iterator;
import java.util.List;
import java.util.Objects;
import javax.ejb.Stateless;
return null;
}
- // Get iterator
- final Iterator<Contact> iterator = contacts.iterator();
-
// Loop through all
- while (iterator.hasNext()) {
- // Get contact
- final Contact next = iterator.next();
-
+ for (final Contact currentContact : contacts) {
// Is same contact?
- if ((Objects.equals(contact, next)) || (Contacts.isSameContact(contact, next))) {
+ if ((Objects.equals(contact, currentContact)) || (Contacts.isSameContact(contact, currentContact))) {
// Debug message
- this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.isContactFound: Found same contact: contactId={1}", this.getClass().getSimpleName(), next.getContactId())); //NOI18N
+ this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.isContactFound: Found same contact: contactId={1}", this.getClass().getSimpleName(), currentContact.getContactId())); //NOI18N
// Found it
- foundContact = next;
+ foundContact = currentContact;
break;
}
}