]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 8 Apr 2020 22:23:40 +0000 (00:23 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 8 Apr 2020 22:23:40 +0000 (00:23 +0200)
- SearchContact is a relict from older times. It can be avoided by using
  AllContacts + iterate over the whole list and find the wished entry. Sure
  this consumes more memory than using SearchContact (by id) but that is okay
  since modern servers have a lot RAM.

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcontacts/model/contact/UserContact.java

index 748ed280f787d8d4157ae6111a20c18601e67946..ec5f8b68c949ac9ca09bc57c86dcdddffbd43fe1 100644 (file)
@@ -68,8 +68,7 @@ import org.mxchange.jphone.model.phonenumbers.mobile.MobileNumber;
 )
 @NamedQueries (
                {
-                       @NamedQuery (name = "AllContacts", query = "SELECT c FROM contacts AS c ORDER BY c.contactId ASC"),
-                       @NamedQuery (name = "SearchContact", query = "SELECT c FROM contacts AS c WHERE c = :contact")
+                       @NamedQuery (name = "AllContacts", query = "SELECT c FROM contacts AS c ORDER BY c.contactId ASC")
                }
 )
 @SuppressWarnings ("PersistenceUnitPresent")