Clean up warnings in concepts 18/105518/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 19 Apr 2023 18:05:22 +0000 (20:05 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 19 Apr 2023 18:37:01 +0000 (20:37 +0200)
Fix a javadoc typo, document module-info and require checker-qual
transitively.

Change-Id: I76bf827437ca60500d142ec999dee2782f1ffe8b
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
common/concepts/src/main/java/module-info.java
common/concepts/src/main/java/org/opendaylight/yangtools/concepts/package-info.java

index cfa5ac9261e11560571957133f4be514db18cb82..4c061a11cf37918259f61c3a69cc8ac10248d7ed 100644 (file)
@@ -5,6 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
+/**
+ * Concepts used widely across OpenDaylight code base.
+ */
 module org.opendaylight.yangtools.concepts {
     exports org.opendaylight.yangtools.concepts;
 
@@ -13,7 +16,7 @@ module org.opendaylight.yangtools.concepts {
 
     // Annotations
     requires static transitive org.eclipse.jdt.annotation;
+    requires static transitive org.checkerframework.checker.qual;
     requires static com.github.spotbugs.annotations;
-    requires static org.checkerframework.checker.qual;
     requires static org.osgi.annotation.bundle;
 }
index bee8ec2af7bf884e263778765f140f8d7b6fb035..9acdddb97b0eeed6d7f5655d2e93e1a940a534d4 100644 (file)
@@ -6,7 +6,7 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 /**
- * Concept used widely across OpenDaylight code base.
+ * Concepts used widely across OpenDaylight code base.
  */
 @Export
 package org.opendaylight.yangtools.concepts;