diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2022-11-17 14:33:31 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-12-14 20:03:52 +0000 |
commit | 22b8b6d4ad713c4abbca5c9b992e873499246b83 (patch) | |
tree | bd7f67fc3df1405ce4c78362bbf74d578f034f73 /server/sonar-webserver-auth | |
parent | 07219819ead9f5ee8a486334e60df575dc536811 (diff) | |
download | sonarqube-22b8b6d4ad713c4abbca5c9b992e873499246b83.tar.gz sonarqube-22b8b6d4ad713c4abbca5c9b992e873499246b83.zip |
[NO JIRA] Remove unused code
Diffstat (limited to 'server/sonar-webserver-auth')
2 files changed, 0 insertions, 48 deletions
diff --git a/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/RedirectionException.java b/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/RedirectionException.java deleted file mode 100644 index 146aef66a6e..00000000000 --- a/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/RedirectionException.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2022 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.server.authentication.exception; - -public abstract class RedirectionException extends RuntimeException { - - public abstract String getPath(String contextPath); -} diff --git a/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/package-info.java b/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/package-info.java deleted file mode 100644 index cd0ff4e9c71..00000000000 --- a/server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/exception/package-info.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2022 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.server.authentication.exception; - -import javax.annotation.ParametersAreNonnullByDefault; |