Skip to content

Commit

Permalink
Merge pull request #5 from paulroemer/master
Browse files Browse the repository at this point in the history
Updates all dependencies
  • Loading branch information
fluorumlabs authored Dec 9, 2021
2 parents 70ddc76 + 498f3fa commit 40e6c64
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,35 +49,35 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20180813</version>
<version>20210307</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.11.3</version>
<version>1.14.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>com.github.slugify</groupId>
<artifactId>slugify</artifactId>
<version>2.3</version>
<version>2.5</version>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -87,7 +87,7 @@
<plugin><!-- Compile jflex lexers -->
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.6.1</version>
<version>1.8.2</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected void appendTextNode(boolean stripNewLines) {
String text = getText();
if (stripNewLines) text = skipRight(text, " \t\n\0");
if (!text.isEmpty()) {
currentElement.appendChild(new TextNode(text, ""));
currentElement.appendChild(new TextNode(text));
clearText();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public enum AsciidocRenderer {
}
moveChildNodes(x, sectionBody1);
if (sectionBody1.childNodeSize() == 0) {
sectionBody1.appendChild(new TextNode("", ""));
sectionBody1.appendChild(new TextNode(""));
}
x.appendChild(sectionBody1);
break;
Expand All @@ -157,7 +157,7 @@ public enum AsciidocRenderer {
// Move all but the first child node
moveChildNodesSkipFirst(x, sectionBody);
if (sectionBody.childNodeSize() == 0) {
sectionBody.appendChild(new TextNode("", ""));
sectionBody.appendChild(new TextNode(""));
}
x.appendChild(sectionBody);
break;
Expand Down

0 comments on commit 40e6c64

Please # to comment.