]> source.dussan.org Git - sonarqube.git/commitdiff
Revert "Fix quality flaws"
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 27 May 2016 10:40:43 +0000 (12:40 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 27 May 2016 10:40:43 +0000 (12:40 +0200)
This reverts commit ecfe664af2ce73e0bf6b06de0c08ab6fc7ef7cbf.

sonar-db/src/main/java/org/sonar/db/rule/RuleDto.java

index 8e6877c7b08303a66ffe6c186c1cfc5c2744a02f..55afe2e559ec65b8e389eb188423c35f41d9f179 100644 (file)
@@ -312,11 +312,27 @@ public class RuleDto {
   }
 
   public Set<String> getTags() {
-    return tags == null ? new HashSet<>() : new TreeSet<>(Arrays.asList(StringUtils.split(tags, ',')));
+    return tags == null ? new HashSet<String>() : new TreeSet<>(Arrays.asList(StringUtils.split(tags, ',')));
   }
 
   public Set<String> getSystemTags() {
-    return systemTags == null ? new HashSet<>() : new TreeSet<>(Arrays.asList(StringUtils.split(systemTags, ',')));
+    return systemTags == null ? new HashSet<String>() : new TreeSet<>(Arrays.asList(StringUtils.split(systemTags, ',')));
+  }
+
+  private String getTagsField() {
+    return tags;
+  }
+
+  private String getSystemTagsField() {
+    return systemTags;
+  }
+
+  private void setTagsField(String s) {
+    tags = s;
+  }
+
+  private void setSystemTagsField(String s) {
+    systemTags = s;
   }
 
   public RuleDto setTags(Set<String> tags) {