diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-01-14 10:14:42 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-01-14 10:14:42 +0100 |
commit | 877dfdc7ef5b0f6368f0da1693501d8e8f71a9c3 (patch) | |
tree | 4aaa5573de10dd5836cefd3ea688003b88c7a718 /sonar-ws | |
parent | d094d504fef670cf84524e9b984a737597fd324b (diff) | |
download | sonarqube-877dfdc7ef5b0f6368f0da1693501d8e8f71a9c3.tar.gz sonarqube-877dfdc7ef5b0f6368f0da1693501d8e8f71a9c3.zip |
Fix quality flaws
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/java/org/sonarqube/ws/client/issue/package-info.java | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/issue/package-info.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/issue/package-info.java new file mode 100644 index 00000000000..ed73ac7d2ac --- /dev/null +++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/issue/package-info.java @@ -0,0 +1,44 @@ +/* + * SonarQube + * Copyright (C) 2009-2016 SonarSource SA + * mailto:contact 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. + */ +/* + * 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.sonarqube.ws.client.issue; + +import javax.annotation.ParametersAreNonnullByDefault; + |