diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-14 13:00:25 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-14 13:00:25 +0000 |
commit | ddcc6272a62c245618d7797712062c96ff7ad3d4 (patch) | |
tree | 2465df13f82cbc664a51b4b7439c570b50e2146e /sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java | |
parent | 2f54216f77f9580f56891d662e56a5d151ce1a2a (diff) | |
download | sonarqube-ddcc6272a62c245618d7797712062c96ff7ad3d4.tar.gz sonarqube-ddcc6272a62c245618d7797712062c96ff7ad3d4.zip |
move deprecated rule API to sonar-deprecated
Diffstat (limited to 'sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java')
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java b/sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java deleted file mode 100644 index da01fb10904..00000000000 --- a/sonar-plugin-api/src/test/java/org/sonar/api/rules/AnnotatedCheck.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Sonar, open source software quality management tool. - * Copyright (C) 2009 SonarSource SA - * mailto:contact AT sonarsource DOT com - * - * Sonar is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * Sonar is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with Sonar; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 - */ -package org.sonar.api.rules; - -import org.sonar.check.Check; -import org.sonar.check.IsoCategory; - -@Check(title ="Annotated Check", description = "Description", isoCategory = IsoCategory.Reliability) -public class AnnotatedCheck { -} |