Skip to content

Commit d8bc651

Browse files
committed
Prepare RELEASE [skip ci]
1 parent 83d4e85 commit d8bc651

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
<parent>
2323
<groupId>org.libj</groupId>
2424
<artifactId>libj</artifactId>
25-
<version>0.9.7-SNAPSHOT</version>
25+
<version>0.9.7</version>
2626
</parent>
2727
<artifactId>util</artifactId>
28-
<version>0.8.1-SNAPSHOT</version>
28+
<version>0.8.1</version>
2929
<name>LibJ Util</name>
3030
<description>
3131
Supplementary utilities for classes that belong to java.util, or are considered essential as to justify existence in java.util.
@@ -35,7 +35,7 @@
3535
<plugin>
3636
<groupId>org.openjax.codegen</groupId>
3737
<artifactId>codegen-maven-plugin</artifactId>
38-
<version>0.2.5-SNAPSHOT</version>
38+
<version>0.2.5</version>
3939
<executions>
4040
<execution>
4141
<id>characterClasses</id>
@@ -335,25 +335,25 @@
335335
<dependency>
336336
<groupId>org.openjax.codegen</groupId>
337337
<artifactId>radixtree</artifactId>
338-
<version>0.2.5-SNAPSHOT</version>
338+
<version>0.2.5</version>
339339
</dependency>
340340
<dependency>
341341
<groupId>org.libj</groupId>
342342
<artifactId>lang</artifactId>
343-
<version>0.7.5-SNAPSHOT</version>
343+
<version>0.7.5</version>
344344
<type>test-jar</type>
345345
<scope>test</scope>
346346
</dependency>
347347
<dependency>
348348
<groupId>org.libj</groupId>
349349
<artifactId>test</artifactId>
350-
<version>0.7.1-SNAPSHOT</version>
350+
<version>0.7.1</version>
351351
<scope>test</scope>
352352
</dependency>
353353
<dependency>
354354
<groupId>org.libj</groupId>
355355
<artifactId>logging</artifactId>
356-
<version>0.4.5-SNAPSHOT</version>
356+
<version>0.4.5</version>
357357
<scope>test</scope>
358358
</dependency>
359359
</dependencies>

src/main/java/org/libj/util/function/ThrowingTriConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ default void accept(final T t, final U u, final V v) {
6464
* @param t The first input argument.
6565
* @param u The second input argument.
6666
* @param v The third input argument.
67-
* @throws Exception If an exception has occurred.
67+
* @throws E If an exception has occurred.
6868
*/
6969
void acceptThrows(T t, U u, V v) throws E;
7070
}

0 commit comments

Comments
 (0)