]> source.dussan.org Git - sonarqube.git/commitdiff
Replace checkNotNull by requireNonNull in sonar-ws
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Fri, 27 Nov 2015 08:14:50 +0000 (09:14 +0100)
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Fri, 27 Nov 2015 08:14:50 +0000 (09:14 +0100)
sonar-ws/src/main/java/org/sonarqube/ws/client/WsRequest.java

index 8fe8f9941fa6016b41c33ed8b6992de74d9f7f99..9e4a91f13c481981e060ec9c084a54d686814dbb 100644 (file)
@@ -24,7 +24,7 @@ import java.util.HashMap;
 import java.util.Map;
 import javax.annotation.Nullable;
 
-import static com.google.common.base.Preconditions.checkNotNull;
+import static java.util.Objects.requireNonNull;
 import static org.sonarqube.ws.client.WsRequest.Method.GET;
 import static org.sonarqube.ws.client.WsRequest.Method.POST;
 
@@ -62,13 +62,13 @@ public class WsRequest {
   }
 
   public WsRequest setMediaType(MediaType type) {
-    checkNotNull(type);
+    requireNonNull(type);
     this.mimeType = type;
     return this;
   }
 
   public WsRequest setParam(String key, @Nullable Object value) {
-    checkNotNull(key, "a WS parameter key cannot be null");
+    requireNonNull(key, "a WS parameter key cannot be null");
     if (value != null) {
       this.params.put(key, value);
     } else {