diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2021-09-16 09:53:08 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-09-16 20:03:30 +0000 |
commit | 2af2f20c35b324fc5f9a5bced333cbdaa64cbe96 (patch) | |
tree | 91a39ce302ef2990d96e8238c06cc286ed4d13d4 /server/sonar-webserver-api/src | |
parent | cb95ab82013c2ce242b3f34bd7a7072e181e4f62 (diff) | |
download | sonarqube-2af2f20c35b324fc5f9a5bced333cbdaa64cbe96.tar.gz sonarqube-2af2f20c35b324fc5f9a5bced333cbdaa64cbe96.zip |
[NO-JIRA] Addressing some code smells
Diffstat (limited to 'server/sonar-webserver-api/src')
-rw-r--r-- | server/sonar-webserver-api/src/main/java/org/sonar/server/rule/package-info.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/server/sonar-webserver-api/src/main/java/org/sonar/server/rule/package-info.java b/server/sonar-webserver-api/src/main/java/org/sonar/server/rule/package-info.java new file mode 100644 index 00000000000..d96ac2b2bec --- /dev/null +++ b/server/sonar-webserver-api/src/main/java/org/sonar/server/rule/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2021 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.rule; + +import javax.annotation.ParametersAreNonnullByDefault; + |