]> source.dussan.org Git - sonarqube.git/commitdiff
Change QProfileName.toString()
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 20 Jun 2014 13:04:58 +0000 (15:04 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 20 Jun 2014 13:27:19 +0000 (15:27 +0200)
sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileName.java
sonar-server/src/test/java/org/sonar/server/qualityprofile/QProfileNameTest.java

index a3fdc520447b0a4dff3ad46766a09f7827c15be5..783da3ec7bfc309accee553538cbf5aff4c4c149 100644 (file)
@@ -19,8 +19,6 @@
  */
 package org.sonar.server.qualityprofile;
 
-import com.google.common.base.Objects;
-
 import javax.annotation.Nullable;
 
 public class QProfileName {
@@ -41,7 +39,8 @@ public class QProfileName {
 
   @Override
   public boolean equals(@Nullable Object o) {
-    if (this == o) return true;
+    if (this == o)
+      return true;
     if (o == null || getClass() != o.getClass()) {
       return false;
     }
@@ -63,9 +62,6 @@ public class QProfileName {
 
   @Override
   public String toString() {
-    return Objects.toStringHelper("QProfile")
-      .add("lang", lang)
-      .add("name", name)
-      .toString();
+    return String.format("[%s, %s]", lang, name);
   }
 }
index 4929a9e33dbbb079f24ebe6833073a07d999244f..00062ff8de9de69fc58c01edf6341d8556e64efc 100644 (file)
@@ -41,6 +41,6 @@ public class QProfileNameTest {
 
   @Test
   public void to_string() throws Exception {
-    assertThat(new QProfileName("xoo", "p1").toString()).isEqualTo("QProfile{lang=xoo, name=p1}");
+    assertThat(new QProfileName("xoo", "p1").toString()).isEqualTo("[xoo, p1]");
   }
 }