]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
added missing final statement as parameters themself should not be changed
authorRoland Haeder <roland@mxchange.org>
Fri, 29 Apr 2016 19:29:49 +0000 (21:29 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 29 Apr 2016 19:31:01 +0000 (21:31 +0200)
src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java

index 4d258539308becc18dc1bbf8616e25b2dbde8090..56f1cabf21a88bd19650f3b8e52062bd940a44d2 100644 (file)
@@ -48,7 +48,7 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i
        }
 
        @Override
-       public Contact addContact (Contact contact) throws ContactAlreadyAddedException {
+       public Contact addContact (final Contact contact) throws ContactAlreadyAddedException {
                throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
        }
 
@@ -186,7 +186,7 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("isContactFound: foundContact={0} - EXIT!", foundContact)); //NOI18N
 
-               // Return status
+               // Return found contact
                return foundContact;
        }