]> source.dussan.org Git - sonarqube.git/commitdiff
Fix violations
authorFabrice Bellingard <bellingard@gmail.com>
Wed, 23 May 2012 14:25:55 +0000 (16:25 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Wed, 23 May 2012 16:10:25 +0000 (18:10 +0200)
sonar-batch/src/main/java/org/sonar/batch/RemoteServerMetadata.java

index c4202a5e40b1fff9c5525f0057ea9c1765f8dc29..3a830404076c4505958fa0ef689c70409f2311fd 100644 (file)
@@ -46,19 +46,16 @@ public class RemoteServerMetadata implements BatchComponent {
   public String getServerId() throws IOException {
     String remoteServerInfo = remoteContent("/api/server");
     // don't use JSON utilities to extract ID from such a small string
-    String id = extractId(remoteServerInfo);
-    return id;
+    return extractId(remoteServerInfo);
   }
 
   protected String extractId(String remoteServerInfo) {
     String partialId = StringUtils.substringAfter(remoteServerInfo, "\"id\":\"");
-    String id = StringUtils.substringBefore(partialId, "\"");
-    return id;
+    return StringUtils.substringBefore(partialId, "\"");
   }
 
   protected String getUrlFor(String path) {
-    String fullUrl = serverUrl + path;
-    return fullUrl;
+    return serverUrl + path;
   }
 
   protected String remoteContent(String path) throws IOException {