diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2021-12-21 12:04:34 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-12-21 20:03:11 +0000 |
commit | c46b02c711f77fc57088f357fcfaf85f3a737cae (patch) | |
tree | 229594ecbcc48d5cb55eb3287070fa85141752aa /server/sonar-webserver-monitoring | |
parent | 32a5fecb407c19060301d2364d12002135b2aefe (diff) | |
download | sonarqube-c46b02c711f77fc57088f357fcfaf85f3a737cae.tar.gz sonarqube-c46b02c711f77fc57088f357fcfaf85f3a737cae.zip |
[NO-JIRA] Fix Bugs, Code Smells
Diffstat (limited to 'server/sonar-webserver-monitoring')
3 files changed, 72 insertions, 0 deletions
diff --git a/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/ce/package-info.java b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/ce/package-info.java new file mode 100644 index 00000000000..2ba184b8db4 --- /dev/null +++ b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/ce/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.monitoring.ce; + +import javax.annotation.ParametersAreNonnullByDefault; + diff --git a/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/devops/package-info.java b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/devops/package-info.java new file mode 100644 index 00000000000..294ed78d344 --- /dev/null +++ b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/devops/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.monitoring.devops; + +import javax.annotation.ParametersAreNonnullByDefault; + diff --git a/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/package-info.java b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/package-info.java new file mode 100644 index 00000000000..b1cac256654 --- /dev/null +++ b/server/sonar-webserver-monitoring/src/main/java/org/sonar/server/monitoring/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.monitoring; + +import javax.annotation.ParametersAreNonnullByDefault; + |