diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-31 18:50:40 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-31 18:52:54 +0100 |
commit | 8bccd3cd3d8ae636a070fc325e38a45d7fdd8438 (patch) | |
tree | abce7d3789e19ff59ac64d9d89740d3794572573 /sonar-core | |
parent | d23c3e0fea299af829cf81066e97574e2276facd (diff) | |
download | sonarqube-8bccd3cd3d8ae636a070fc325e38a45d7fdd8438.tar.gz sonarqube-8bccd3cd3d8ae636a070fc325e38a45d7fdd8438.zip |
SONAR-3895 fix compatibility of dry-run mode with ProjectBuilder extensions
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/NotDryRun.java | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/NotDryRun.java b/sonar-core/src/main/java/org/sonar/core/NotDryRun.java deleted file mode 100644 index 074d93430e7..00000000000 --- a/sonar-core/src/main/java/org/sonar/core/NotDryRun.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Sonar, open source software quality management tool. - * Copyright (C) 2008-2012 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.core; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * Disables component on dry runs. - * This annotation must be used by core modules only. It MUST not be used by external plugins. - * @since 2.9 - */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.TYPE) -public @interface NotDryRun { -} |