Skip to content

Commit 2e24c86

Browse files
committed
fix: Add 'requires transitive' to fix compiler warning
This fixes the compiler warning "The type Extension from module org.commonmark may not be accessible to clients due to missing 'requires transitive'"
1 parent 7bbaa9a commit 2e24c86

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module org.commonmark.ext.autolink {
22
exports org.commonmark.ext.autolink;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
requires org.nibor.autolink;
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.footnotes {
22
exports org.commonmark.ext.footnotes;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.gfm.strikethrough {
22
exports org.commonmark.ext.gfm.strikethrough;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.gfm.tables {
22
exports org.commonmark.ext.gfm.tables;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.heading.anchor {
22
exports org.commonmark.ext.heading.anchor;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.image.attributes {
22
exports org.commonmark.ext.image.attributes;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.ins {
22
exports org.commonmark.ext.ins;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.task.list.items {
22
exports org.commonmark.ext.task.list.items;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module org.commonmark.ext.front.matter {
22
exports org.commonmark.ext.front.matter;
33

4-
requires org.commonmark;
4+
requires transitive org.commonmark;
55
}

0 commit comments

Comments
 (0)