aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home/src/main
diff options
context:
space:
mode:
authorJanos Gyerik <janos.gyerik@sonarsource.com>2019-01-10 10:31:56 +0100
committerSonarTech <sonartech@sonarsource.com>2019-01-10 20:21:03 +0100
commit06bd0d2b092eaf28a022e58e80318b3435f66e0f (patch)
treeb56c1aae1c792a64acfde967763280cde1159b1c /sonar-home/src/main
parent8654f383093aa581029719f7cd424301c9410ea8 (diff)
downloadsonarqube-06bd0d2b092eaf28a022e58e80318b3435f66e0f.tar.gz
sonarqube-06bd0d2b092eaf28a022e58e80318b3435f66e0f.zip
Remove unused dirs
Diffstat (limited to 'sonar-home/src/main')
-rw-r--r--sonar-home/src/main/java/org/sonar/home/cache/Logger.java34
-rw-r--r--sonar-home/src/main/java/org/sonar/home/cache/package-info.java24
2 files changed, 0 insertions, 58 deletions
diff --git a/sonar-home/src/main/java/org/sonar/home/cache/Logger.java b/sonar-home/src/main/java/org/sonar/home/cache/Logger.java
deleted file mode 100644
index 9b4cdaf4d54..00000000000
--- a/sonar-home/src/main/java/org/sonar/home/cache/Logger.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2018 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.home.cache;
-
-public interface Logger {
-
- void debug(String msg);
-
- void info(String msg);
-
- void warn(String msg);
-
- void error(String msg);
-
- void error(String msg, Throwable t);
-
-}
diff --git a/sonar-home/src/main/java/org/sonar/home/cache/package-info.java b/sonar-home/src/main/java/org/sonar/home/cache/package-info.java
deleted file mode 100644
index 6b043e57856..00000000000
--- a/sonar-home/src/main/java/org/sonar/home/cache/package-info.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2018 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.
- */
-@ParametersAreNonnullByDefault
-package org.sonar.home.cache;
-
-import javax.annotation.ParametersAreNonnullByDefault;
-