Bump upstreams to SNAPSHOTs
[netconf.git] / restconf / websocket-client / src / main / java / org / opendaylight / restconf / websocket / client / ApplicationSettings.java
index 4912ad629b41e93aa02c705e26d7226e2ee29268..1f9c00a781bfb074d00249758e2031ffdb4e9735 100644 (file)
@@ -5,11 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.restconf.websocket.client;
 
 import com.google.common.base.Preconditions;
-import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.io.File;
 import java.io.PrintWriter;
 import java.io.StringWriter;
@@ -41,8 +39,6 @@ final class ApplicationSettings {
             this.password = password;
         }
 
-        @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD",
-                justification = "https://github.com/spotbugs/spotbugs/issues/811")
         private static Credentials extractCredentials(final String basicAuthentication) {
             final String[] credentials = basicAuthentication.split(":");
             Preconditions.checkArgument(credentials.length == 2, "Both username and password must be specified in the "