diff options
author | Klaudio Sinani <klaudio.sinani@sonarsource.com> | 2022-11-14 15:29:00 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-11-15 20:02:59 +0000 |
commit | 3c8379f8dac6872ce030dd3b3c824e4e69b76fc2 (patch) | |
tree | 2aeae95b83827d81f7a8a30aab0ecb922244292e /plugins/sonar-xoo-plugin | |
parent | 4d156d7cffcd7379b3dcac2a36946bcbeab8077f (diff) | |
download | sonarqube-3c8379f8dac6872ce030dd3b3c824e4e69b76fc2.tar.gz sonarqube-3c8379f8dac6872ce030dd3b3c824e4e69b76fc2.zip |
[NO-JIRA] Fix reported code smells
Diffstat (limited to 'plugins/sonar-xoo-plugin')
-rw-r--r-- | plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/package-info.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/package-info.java b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/package-info.java new file mode 100644 index 00000000000..211676e4e8f --- /dev/null +++ b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/package-info.java @@ -0,0 +1,23 @@ +/* + * 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.xoo.coverage; + +import javax.annotation.ParametersAreNonnullByDefault; |