diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-29 15:53:56 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-29 19:01:12 +0200 |
commit | 501289ca85e1c8dd21d5e0ba5f457b40ee62f5ef (patch) | |
tree | ba5b06c4357edb58ec3f248c6fa12324c1ec71ca /sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java | |
parent | fcf0d15e049e9c6e647fae628dc0e2bc17d078b6 (diff) | |
download | sonarqube-501289ca85e1c8dd21d5e0ba5f457b40ee62f5ef.tar.gz sonarqube-501289ca85e1c8dd21d5e0ba5f457b40ee62f5ef.zip |
Quality flaws
- do not declare multiple variables on same line
- fix imports
Diffstat (limited to 'sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java')
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java b/sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java index 1e48ebf494e..2bf8848c445 100644 --- a/sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java +++ b/sonar-plugin-api/src/test/java/org/sonar/api/checks/CheckWithIntegerProperty.java @@ -19,7 +19,9 @@ */ package org.sonar.api.checks; -import org.sonar.check.*; +import org.sonar.check.Priority; +import org.sonar.check.Rule; +import org.sonar.check.RuleProperty; @Rule(priority = Priority.CRITICAL) class CheckWithIntegerProperty { |