Skip to content

Commit f17b7a7

Browse files
Jules was unable to complete the task in time. Please review the work done so far and provide feedback for Jules to continue.
1 parent e82098f commit f17b7a7

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

commons/src/main/java/org/restheart/utils/BsonUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@
7575
import org.slf4j.LoggerFactory;
7676

7777
/**
78-
*
79-
* @author Andrea Di Cesare {@literal <andrea@softinstigate.com>}
78+
* Utility class for BSON manipulation.
8079
*/
8180
public class BsonUtils {
8281

commons/src/main/java/org/restheart/utils/BuffersUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
import io.undertow.server.HttpServerExchange;
3333

3434
/**
35-
*
36-
* @author Andrea Di Cesare {@literal <andrea@softinstigate.com>}
35+
* Utility class for buffer manipulation.
3736
*/
3837
public class BuffersUtils {
3938

commons/src/main/java/org/restheart/utils/ChannelReader.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
import io.undertow.server.HttpServerExchange;
2727

2828
/**
29-
*
30-
* @author Andrea Di Cesare {@literal <andrea@softinstigate.com>}
29+
* Utility class for reading data from channels.
3130
*/
3231
public class ChannelReader {
3332
/**

commons/src/main/java/org/restheart/utils/CheckersUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
import org.restheart.exchange.MongoRequest;
2727

2828
/**
29-
*
30-
* @author Andrea Di Cesare {@literal <andrea@softinstigate.com>}
29+
* Utility class for various checks.
3130
*/
3231
public class CheckersUtils {
3332
/**

commons/src/main/java/org/restheart/utils/CleanerUtils.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222

2323
import java.lang.ref.Cleaner;
2424

25+
/**
26+
* Utility class for managing Cleaner instances.
27+
*/
2528
public class CleanerUtils {
2629
private static CleanerUtils instance = null;
2730
private final Cleaner cleaner;

commons/src/main/java/org/restheart/utils/DirectoryWatcher.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
import org.slf4j.Logger;
3838
import org.slf4j.LoggerFactory;
3939

40+
/**
41+
* Watches a directory and its subdirectories for changes.
42+
*/
4043
public class DirectoryWatcher implements Runnable {
4144
private static final Logger LOGGER = LoggerFactory.getLogger(DirectoryWatcher.class);
4245

0 commit comments

Comments
 (0)