diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2017-08-01 16:58:17 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2017-08-04 14:58:16 +0200 |
commit | 69d96f792448e9809bed04ecc1ea0dd520e8f9e6 (patch) | |
tree | a223bed8b3e2ab764a78241127b84e5d5956562a | |
parent | ac7edbe5890ae7921593dda7520157dca652860d (diff) | |
download | sonarqube-69d96f792448e9809bed04ecc1ea0dd520e8f9e6.tar.gz sonarqube-69d96f792448e9809bed04ecc1ea0dd520e8f9e6.zip |
Remove unused files
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ModuleScanPhaseHandler.java | 30 | ||||
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ProjectScanHandler.java | 32 |
2 files changed, 0 insertions, 62 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ModuleScanPhaseHandler.java b/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ModuleScanPhaseHandler.java deleted file mode 100644 index 780a46ac8be..00000000000 --- a/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ModuleScanPhaseHandler.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program 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. - * - * This program 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 this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -package org.sonar.api.scan.event; - -import org.sonar.api.batch.events.EventHandler; - -public interface ModuleScanPhaseHandler extends EventHandler { - interface ModuleScanPhaseEvent { - - } - - void onModuleScanPhase(ModuleScanPhaseEvent event); -} diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ProjectScanHandler.java b/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ProjectScanHandler.java deleted file mode 100644 index 22a69ff94ad..00000000000 --- a/sonar-plugin-api/src/main/java/org/sonar/api/scan/event/ProjectScanHandler.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program 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. - * - * This program 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 this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -package org.sonar.api.scan.event; - -import org.sonar.api.batch.events.EventHandler; - -public interface ProjectScanHandler extends EventHandler { - interface ProjectScanEvent { - boolean isStart(); - - boolean isEnd(); - } - - void onProjectScan(ProjectScanEvent event); -} |