From 895705a1ad97f349250f8d1ec0028f22505b998a Mon Sep 17 00:00:00 2001 From: Michael Whapples Date: Fri, 14 Aug 2026 11:27:47 +0100 Subject: [PATCH 1/2] Update pandoc to 3.10.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f6474fc2..69e1cf55 100644 --- a/pom.xml +++ b/pom.xml @@ -74,7 +74,7 @@ child.project.url.inherit.append.path="false"> 5.23.0 f5b2edaee2 - 3.10.1 + 3.10.2 From b3cf28fc03ac7311a7138a17772c8591621edcaf Mon Sep 17 00:00:00 2001 From: Michael Whapples Date: Fri, 14 Aug 2026 12:00:15 +0100 Subject: [PATCH 2/2] Fix more warnings. --- .../java/org/brailleblaster/utd/utils/UTDHelper.kt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/utd/src/main/java/org/brailleblaster/utd/utils/UTDHelper.kt b/utd/src/main/java/org/brailleblaster/utd/utils/UTDHelper.kt index c55e8698..038a1cb0 100644 --- a/utd/src/main/java/org/brailleblaster/utd/utils/UTDHelper.kt +++ b/utd/src/main/java/org/brailleblaster/utd/utils/UTDHelper.kt @@ -36,8 +36,6 @@ const val BRAILLE_SPACE: Char = '\u2800' * Get the brl elements representing the content. The brl elements may not * necessarily be directly associated to the node passed in. * - * @Param this@getBrlElements The node to find the brl elements for. This parameter should - * not be null. * @Return the related brl elements representing the content. If there is no * brl elements related then an empty Nodes collection will be * returned. @@ -61,8 +59,6 @@ fun Node.getBrlElements(): Nodes { /** * Get the directly associated brl element for the given node. * - * @Param this@getAssociatedBrlElement The node to find the directly associated brl element for. - * This parameter should not be null. * @Return The directly associated brl element. If there is no associated * brl element then null will be returned. * @Throw NullPointerException When null is passed in for the node @@ -78,7 +74,6 @@ fun Node.getAssociatedBrlElement(): Element? { /** * Get the directly associated brl element for the given child node. * - * @param this@getAssociatedBrlElement The parent element of the child node under query. * @param idx The index of the child node under query. * @return The directly associated brl element. If there is no associated * brl element then null will be returned. @@ -101,8 +96,6 @@ fun ParentNode.getAssociatedBrlElement(idx: Int): Element? { /** * Get the original node associated with the specified brl element. * - * @Param this@getAssociatedNode The brl element which to find the original associated - * node. This should not be null. * @Return The original node associated to the brl element. If the brl * element is a Braille only element then null will be returned. * @Throw NullPointerException if the brlElement parameter is null. @@ -148,7 +141,6 @@ fun getTableCopies(root: Node, onTable: Consumer) { /** * Checks given node for any brl nodes. Returns true on first brl node encountered and is thus * faster than using getDescendantBrl - * @param this@containsBrl * @return */ fun Node.containsBrl(): Boolean { @@ -183,13 +175,11 @@ fun startsWithWhitespace(str: String): Int = str.takeWhile { isUtdWhitespace(it) /** * Recursively remove all brl nodes and internal UTD attributes (utdAction, utdStyle) - * @param this@stripUTDRecursive */ fun Document.stripUTDRecursive() = this.rootElement.stripUTDRecursive() /** * Recursively remove all brl nodes and internal UTD attributes (utdAction, utdStyle) - * @param this@stripUTDRecursive */ fun Element.stripUTDRecursive() { if (UTDElements.BRL.isA(this) || (UTD_NS == this.namespaceURI && "tablebrl" == this.localName)) {