]> git.mxchange.org Git - addressbook-swing.git/commitdiff
ignored some warnings
authorRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:37:10 +0000 (16:37 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 7 May 2016 14:37:10 +0000 (16:37 +0200)
src/org/mxchange/addressbook/client/console/ConsoleClient.java

index 6f74ce211bff0fcd0f8f134addb45b81335874d9..60653923cdfc02e1b7b7e32e2386a1986d7cc79f 100644 (file)
@@ -366,6 +366,7 @@ public class ConsoleClient extends BaseAddressbookClient implements AddressbookC
        }
 
        @Override
+       @SuppressWarnings ("UseOfSystemOutOrSystemErr")
        public char enterChar (final char[] validChars, final String message) {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("validChars={0},message={1} - CALLED!", Arrays.toString(validChars), message)); //NOI18N
@@ -410,6 +411,7 @@ public class ConsoleClient extends BaseAddressbookClient implements AddressbookC
 
                // Debug message
                //* NOISY-DEBUG: */ System.out.println(validChars);
+
                // Call inner method
                char gender = this.enterChar(validChars, message);
 
@@ -427,6 +429,7 @@ public class ConsoleClient extends BaseAddressbookClient implements AddressbookC
        }
 
        @Override
+       @SuppressWarnings ("UseOfSystemOutOrSystemErr")
        public int enterInt (final int minimum, final int maximum, final String message) {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("minimum={0},maximum={1},message={2} - CALLED!", minimum, maximum, message)); //NOI18N
@@ -454,6 +457,7 @@ public class ConsoleClient extends BaseAddressbookClient implements AddressbookC
        }
 
        @Override
+       @SuppressWarnings ("UseOfSystemOutOrSystemErr")
        public String enterString (final int minLength, final int maxLength, final String message, final boolean allowEmpty) {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("minLength={0},maxLength={1},message={2}allowEmpty={3} - CALLED!", minLength, maxLength, message, allowEmpty)); //NOI18N
@@ -507,6 +511,7 @@ public class ConsoleClient extends BaseAddressbookClient implements AddressbookC
        }
 
        @Override
+       @SuppressWarnings ("UseOfSystemOutOrSystemErr")
        public void outputMessage (final String message) {
                System.out.println(message);
        }