From 6fd8584ad3181379d1f2f43930b30c9ddf797613 Mon Sep 17 00:00:00 2001 From: Edward Wang Date: Wed, 22 Oct 2025 01:28:12 -0400 Subject: [PATCH] Apply fixes for Java 21 Also fix scaladoc errors that prevent `publishLocal` from working properly. --- project/build.properties | 2 +- src/main/scala/fixedpoint/BinaryPoint.scala | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/project/build.properties b/project/build.properties index 46e43a9..bc73906 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.2 +sbt.version=1.10.3 diff --git a/src/main/scala/fixedpoint/BinaryPoint.scala b/src/main/scala/fixedpoint/BinaryPoint.scala index a4ea0f8..fdb2bfc 100644 --- a/src/main/scala/fixedpoint/BinaryPoint.scala +++ b/src/main/scala/fixedpoint/BinaryPoint.scala @@ -39,7 +39,7 @@ trait HasBinaryPoint { def binaryPoint: BinaryPoint - /** Return the [[Double]] value of this instance if it is a Literal + /** Return the Double value of this instance if it is a Literal * * @note this method may throw an exception if the literal value won't fit in a Double */ @@ -55,7 +55,7 @@ trait HasBinaryPoint { */ def litToDouble: Double = litToDoubleOption.get - /** Return the [[BigDecimal]] value of this instance if it is a Literal + /** Return the BigDecimal value of this instance if it is a Literal * * @note this method may throw an exception if the literal value won't fit in a BigDecimal */ @@ -67,7 +67,7 @@ trait HasBinaryPoint { } } - /** Return the [[BigDecimal]] value of this instance assuming it is a literal (convenience method) + /** Return the BigDecimal value of this instance assuming it is a literal (convenience method) * * @return */