Skip to content

Commit 9d1647f

Browse files
authored
Merge pull request #358 from sebthom/transitive
fix: Add 'requires transitive' to fix compiler warning
2 parents 9b56a4b + 2e24c86 commit 9d1647f

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)