From: Simon Brandhof Date: Sat, 12 May 2018 17:54:17 +0000 (+0200) Subject: Drop unused class DatabaseUtils X-Git-Tag: 7.5~1190 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=81c4d588b06a5dd074c1695718b294d69ba2204b;p=sonarqube.git Drop unused class DatabaseUtils --- diff --git a/server/sonar-db-core/src/main/java/org/sonar/core/DatabaseUtils.java b/server/sonar-db-core/src/main/java/org/sonar/core/DatabaseUtils.java deleted file mode 100644 index 9839aed5a58..00000000000 --- a/server/sonar-db-core/src/main/java/org/sonar/core/DatabaseUtils.java +++ /dev/null @@ -1,30 +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.core; - -/** - * Kept for backward compatibility of plugins/libs (like sonar-license) that are directly calling classes from the core - * - * @deprecated since 5.2, should be replaced by {@link org.sonar.db.DatabaseUtils} - */ -@Deprecated -public class DatabaseUtils extends org.sonar.db.DatabaseUtils { - -} diff --git a/server/sonar-db-core/src/main/java/org/sonar/core/package-info.java b/server/sonar-db-core/src/main/java/org/sonar/core/package-info.java deleted file mode 100644 index 90f36299190..00000000000 --- a/server/sonar-db-core/src/main/java/org/sonar/core/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.core; - -import javax.annotation.ParametersAreNonnullByDefault; -