From 628ad96be966f895381fc2e645297dbb300840d0 Mon Sep 17 00:00:00 2001 From: Maksim Grebeniuk <122789225+maksim-grebeniuk-sonarsource@users.noreply.github.com> Date: Thu, 30 Nov 2023 14:42:31 +0100 Subject: [PATCH] SONARPY-1166 add missing package-info.java (#1670) --- .../python/checks/utils/package-info.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 python-checks/src/main/java/org/sonar/python/checks/utils/package-info.java diff --git a/python-checks/src/main/java/org/sonar/python/checks/utils/package-info.java b/python-checks/src/main/java/org/sonar/python/checks/utils/package-info.java new file mode 100644 index 0000000000..2ab0b4dbd8 --- /dev/null +++ b/python-checks/src/main/java/org/sonar/python/checks/utils/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube Python Plugin + * Copyright (C) 2011-2023 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.python.checks.utils; + +import javax.annotation.ParametersAreNonnullByDefault;