From 8bccd3cd3d8ae636a070fc325e38a45d7fdd8438 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 31 Oct 2012 18:50:40 +0100 Subject: SONAR-3895 fix compatibility of dry-run mode with ProjectBuilder extensions --- .../src/main/java/org/sonar/core/NotDryRun.java | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 sonar-core/src/main/java/org/sonar/core/NotDryRun.java (limited to 'sonar-core') 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 { -} -- cgit v1.2.3