diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-09-14 17:06:43 +0200 |
---|---|---|
committer | Eric Hartmann <hartmann.eric@gmail.Com> | 2017-10-02 13:03:35 +0200 |
commit | be679e2a24e75bfa5490ee5a0fb272e7f98d2e97 (patch) | |
tree | 7cb2ae3d5b64d094f412211c2f78fbd687d24f0f /server | |
parent | df5fdae73ab3269c46e9b4138dc4ea3143425821 (diff) | |
download | sonarqube-be679e2a24e75bfa5490ee5a0fb272e7f98d2e97.tar.gz sonarqube-be679e2a24e75bfa5490ee5a0fb272e7f98d2e97.zip |
add missing package-info.java
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-server/src/main/java/org/sonar/ce/package-info.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/ce/package-info.java b/server/sonar-server/src/main/java/org/sonar/ce/package-info.java new file mode 100644 index 00000000000..5803a640b79 --- /dev/null +++ b/server/sonar-server/src/main/java/org/sonar/ce/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube + * Copyright (C) 2009-2017 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.ce; + +import javax.annotation.ParametersAreNonnullByDefault; |