Fix yang-common-netty module warnings 13/105513/4
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 19 Apr 2023 16:05:30 +0000 (18:05 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 19 Apr 2023 19:37:25 +0000 (21:37 +0200)
Explicitly require netty-common and document the module.

Change-Id: I08c4762b12be7b65ce7d0088c8e842165bfb4c9f
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
common/yang-common-netty/src/main/java/module-info.java

index ea761d459313acf9f6e398d8c1178911bd43ee4a..5b296d535afed6bac446f1db60534332f450a36b 100644 (file)
@@ -5,12 +5,16 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
+/**
+ * Common utilities bridging common YANG constructs with Netty.
+ */
 module org.opendaylight.yangtools.yang.common.netty {
     exports org.opendaylight.yangtools.yang.common.netty;
 
     requires transitive io.netty.buffer;
     requires transitive org.opendaylight.yangtools.yang.common;
     requires com.google.common;
+    requires io.netty.common;
 
     // Annotations
     requires static transitive org.eclipse.jdt.annotation;