aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-webserver-api
diff options
context:
space:
mode:
authorJacek Poreda <jacek.poreda@sonarsource.com>2023-06-21 15:00:34 +0200
committersonartech <sonartech@sonarsource.com>2023-06-22 20:02:53 +0000
commitd349b4f3f74a5d1882e5d1f15cacc504cc629bb5 (patch)
tree8b5fd570d134274489bf66a061537ecb40a75e7e /server/sonar-webserver-api
parent48748d04ba6a59cbbcfa84ca07bc1a7e99829110 (diff)
downloadsonarqube-d349b4f3f74a5d1882e5d1f15cacc504cc629bb5.tar.gz
sonarqube-d349b4f3f74a5d1882e5d1f15cacc504cc629bb5.zip
[NO-JIRA] Fix Code Smells
Diffstat (limited to 'server/sonar-webserver-api')
-rw-r--r--server/sonar-webserver-api/src/main/java/org/sonar/server/http/package-info.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-webserver-api/src/main/java/org/sonar/server/http/package-info.java b/server/sonar-webserver-api/src/main/java/org/sonar/server/http/package-info.java
new file mode 100644
index 00000000000..ef6023816b5
--- /dev/null
+++ b/server/sonar-webserver-api/src/main/java/org/sonar/server/http/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 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.http;
+
+import javax.annotation.ParametersAreNonnullByDefault;