aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated
diff options
context:
space:
mode:
authorJulien HENRY <henryju@yahoo.fr>2017-01-09 10:22:36 +0100
committerGitHub <noreply@github.com>2017-01-09 10:22:36 +0100
commit3a78e2dd377c501a417036ee78509f461a3c6a6b (patch)
tree4b161c893bf70e24b20cd68aa2f7f795fe0d0458 /sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated
parenta21a43dbec4a9c6b7c199b2beee76c009b70b8b3 (diff)
downloadsonarqube-3a78e2dd377c501a417036ee78509f461a3c6a6b.tar.gz
sonarqube-3a78e2dd377c501a417036ee78509f461a3c6a6b.zip
Scanner cleanup
* Fail fast when a WS call is made in medium test mode * Rename many Batch* -> Scanner*
Diffstat (limited to 'sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated')
-rw-r--r--sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated/InputFileComponent.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated/InputFileComponent.java b/sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated/InputFileComponent.java
deleted file mode 100644
index 8a11c1856e4..00000000000
--- a/sonar-scanner-engine/src/main/java/org/sonar/scanner/deprecated/InputFileComponent.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2016 SonarSource SA
- * mailto:contact 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.scanner.deprecated;
-
-import org.sonar.api.batch.fs.InputFile.Type;
-import org.sonar.api.batch.fs.internal.DefaultInputFile;
-import org.sonar.api.component.Component;
-import org.sonar.api.resources.Qualifiers;
-
-public class InputFileComponent implements Component {
-
- private final DefaultInputFile inputFile;
-
- public InputFileComponent(DefaultInputFile inputFile) {
- this.inputFile = inputFile;
- }
-
- @Override
- public String key() {
- return inputFile.key();
- }
-
- @Override
- public String path() {
- return inputFile.relativePath();
- }
-
- @Override
- public String name() {
- return inputFile.file().getName();
- }
-
- @Override
- public String longName() {
- return inputFile.relativePath();
- }
-
- @Override
- public String qualifier() {
- return inputFile.type() == Type.MAIN ? Qualifiers.FILE : Qualifiers.UNIT_TEST_FILE;
- }
-
-}