diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-12-05 17:40:22 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-12-05 17:40:22 +0100 |
commit | c81e8866c67f02a245abc25ecdb8f6f482c1bd30 (patch) | |
tree | 8f3f1d329011a09960702244176b23deed88e973 /sonar-deprecated/src | |
parent | c54486801fd213196cb7a9f7d19fa95775403926 (diff) | |
download | sonarqube-c81e8866c67f02a245abc25ecdb8f6f482c1bd30.tar.gz sonarqube-c81e8866c67f02a245abc25ecdb8f6f482c1bd30.zip |
SONAR-3055 API: remove the attribute "classes" of the annotations @DependsUpon and @DependedUpon
Diffstat (limited to 'sonar-deprecated/src')
-rw-r--r-- | sonar-deprecated/src/main/java/org/sonar/api/batch/GeneratesViolations.java | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sonar-deprecated/src/main/java/org/sonar/api/batch/GeneratesViolations.java b/sonar-deprecated/src/main/java/org/sonar/api/batch/GeneratesViolations.java deleted file mode 100644 index cd20e179946..00000000000 --- a/sonar-deprecated/src/main/java/org/sonar/api/batch/GeneratesViolations.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Sonar, open source software quality management tool. - * Copyright (C) 2008-2011 SonarSource - * 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.batch; - -import org.sonar.api.rules.ViolationFilter; - -/** - * @deprecated since 2.3. Use <code>@DependsUpon(DecoratorBarriers.START_VIOLATIONS_GENERATION)</code> and <code>@DependedUpon(DecoratorBarriers.END_OF_VIOLATIONS_GENERATION)</code> - */ -@Deprecated -@DependsUpon(classes = ViolationFilter.class) -public interface GeneratesViolations { -} |