From: Roland Häder Date: Tue, 9 Aug 2016 13:43:08 +0000 (+0200) Subject: minor: improved message, foundContact is the right variable name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9b5ab17f36cdae9575d9caa3a7ed4639b0ca3921;p=pizzaservice-core.git minor: improved message, foundContact is the right variable name --- diff --git a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java index 7d0dd7c..3815986 100644 --- a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java +++ b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java @@ -334,7 +334,7 @@ public abstract class BasePizzaDatabaseBean extends BaseDatabaseBean { assert (foundContact instanceof Contact) : MessageFormat.format("Contact with id {0} not found, but should be.", contact.getContactId()); //NOI18N // Debug message - this.getLoggerBeanLocal().logDebug(MessageFormat.format("updateUserPersonalData: contact.contactId={0}", foundContact.getContactId())); //NOI18N + this.getLoggerBeanLocal().logDebug(MessageFormat.format("updateUserPersonalData: foundContact.contactId={0}", foundContact.getContactId())); //NOI18N // Merge contact instance Contact detachedContact = this.getEntityManager().merge(foundContact);