Skip to content

Commit fa73a7f

Browse files
committed
v0.20.4
1 parent 901dd9b commit fa73a7f

31 files changed

+99
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ is recommended for better performances on disk operations (detection of physical
2626
#### Version
2727

2828
[![Maven Central](https://img.shields.io/maven-central/v/net.lecousin/core.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin%22%20AND%20a%3A%22core%22)
29-
[![Javadoc](https://img.shields.io/badge/javadoc-0.20.3-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core/0.20.3)
29+
[![Javadoc](https://img.shields.io/badge/javadoc-0.20.4-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core/0.20.4)
3030

3131
### Current development - branch dev
3232

core.javaee/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>net.lecousin</groupId>
55
<artifactId>core-parent-pom</artifactId>
6-
<version>0.20.3</version>
6+
<version>0.20.4</version>
77
</parent>
88
<artifactId>core.javaee</artifactId>
99
<dependencies>

net.lecousin.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.lecousin</groupId>
77
<artifactId>core-parent-pom</artifactId>
8-
<version>0.20.3</version>
8+
<version>0.20.4</version>
99
</parent>
1010

1111
<artifactId>core</artifactId>

net.lecousin.core/src/main/java/net/lecousin/framework/adapter/FileToIO.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
*/
1212
public final class FileToIO {
1313

14-
private FileToIO() { /* no instance */ }
14+
private FileToIO() {
15+
/* no instance */
16+
}
1517

1618
/** Convert a File into an IO.Readable by opening it. */
1719
public static class Readable implements Adapter<File,IO.Readable.Seekable> {

net.lecousin.core/src/main/java/net/lecousin/framework/application/LCCore.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
*/
1616
public final class LCCore {
1717

18-
private LCCore() { /* no instance */ }
18+
private LCCore() {
19+
/* no instance */
20+
}
1921

2022
/** Interface to implement according to the environment.
2123
* For example, StandaloneLCCore can be used for a standalone application JVM.

net.lecousin.core/src/main/java/net/lecousin/framework/collections/ArrayUtil.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
/** Utility methods for arrays. */
1414
public final class ArrayUtil {
1515

16-
private ArrayUtil() { /* no instance */ }
16+
private ArrayUtil() {
17+
/* no instance */
18+
}
1719

1820
/** Return true if the array contains the value.
1921
* Comparison is done using the equals method.

net.lecousin.core/src/main/java/net/lecousin/framework/collections/CollectionsUtil.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
/** Utility methods on collections. */
1515
public final class CollectionsUtil {
1616

17-
private CollectionsUtil() { /* no instance */ }
17+
private CollectionsUtil() {
18+
/* no instance */
19+
}
1820

1921
/** Instantiate an IteratorToEnumeration on the given iterator. */
2022
public static <T> Enumeration<T> enumeration(Iterator<T> iterator) {

net.lecousin.core/src/main/java/net/lecousin/framework/collections/map/MapUtil.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
*/
99
public final class MapUtil {
1010

11-
private MapUtil() { /* no instance */ }
11+
private MapUtil() {
12+
/* no instance */
13+
}
1214

1315
/** Remove all keys associated with the given value. */
1416
public static <T> void removeValue(Map<?,T> map, T value) {

net.lecousin.core/src/main/java/net/lecousin/framework/concurrent/async/Async.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
public class Async<TError extends Exception> implements IAsync<TError>, Future<Void> {
2121

2222
/** Constructor. */
23-
public Async() {}
23+
public Async() {
24+
// nothing
25+
}
2426

2527
/** Constructor with an initial state. */
2628
public Async(boolean unblocked) {

net.lecousin.core/src/main/java/net/lecousin/framework/concurrent/async/AsyncSupplier.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
public class AsyncSupplier<T,TError extends Exception> implements IAsync<TError>, Future<T> {
2727

2828
/** Constructor. */
29-
public AsyncSupplier() {}
29+
public AsyncSupplier() {
30+
// nothing
31+
}
3032

3133
/** Create an unblocked point with the given result and error. */
3234
public AsyncSupplier(T result, TError error) {

0 commit comments

Comments
 (0)