diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-06-18 18:30:50 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-06-18 18:30:50 +0200 |
commit | 7cff3b0b66694aea1186d33816882fc5c3ce8fe9 (patch) | |
tree | b04af5bfb26a8285b20bcd36931c6d08094742e9 /sonar-core | |
parent | 47bad47ae07d3ffc895f3e76261d637073c57981 (diff) | |
download | sonarqube-7cff3b0b66694aea1186d33816882fc5c3ce8fe9.tar.gz sonarqube-7cff3b0b66694aea1186d33816882fc5c3ce8fe9.zip |
Revert "Fix quality flaws"
This reverts commit 47bad47ae07d3ffc895f3e76261d637073c57981 which breaks the compiltation of SQ
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/notification/package-info.java | 23 | ||||
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/qualityprofile/package-info.java | 23 |
2 files changed, 46 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/notification/package-info.java b/sonar-core/src/main/java/org/sonar/core/notification/package-info.java new file mode 100644 index 00000000000..c53b6d4b186 --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/notification/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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. + * + * SonarQube 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.core.notification; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/sonar-core/src/main/java/org/sonar/core/qualityprofile/package-info.java b/sonar-core/src/main/java/org/sonar/core/qualityprofile/package-info.java new file mode 100644 index 00000000000..0f09c0fc850 --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/qualityprofile/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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. + * + * SonarQube 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.core.qualityprofile; + +import javax.annotation.ParametersAreNonnullByDefault; |