diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-02-21 11:04:10 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-02-24 20:27:07 +0100 |
commit | f874edc25c9217cd7e2ccbf3c849efb55ccfb231 (patch) | |
tree | a8ddf9cb0ba8534ed3f8614f156848e86330d474 | |
parent | 16f60ea1b43b5fa2c763d0c594ec43d448b0e4e4 (diff) | |
download | sonarqube-f874edc25c9217cd7e2ccbf3c849efb55ccfb231.tar.gz sonarqube-f874edc25c9217cd7e2ccbf3c849efb55ccfb231.zip |
fix quality flaw: missing package-info.java
-rw-r--r-- | server/sonar-db-dao/src/main/java/org/sonar/db/package-info.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/server/sonar-db-dao/src/main/java/org/sonar/db/package-info.java b/server/sonar-db-dao/src/main/java/org/sonar/db/package-info.java new file mode 100644 index 00000000000..0fa491e02ec --- /dev/null +++ b/server/sonar-db-dao/src/main/java/org/sonar/db/package-info.java @@ -0,0 +1,24 @@ +/* + * 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.db; + +import javax.annotation.ParametersAreNonnullByDefault; + |