Skip to content
This repository was archived by the owner on Nov 18, 2020. It is now read-only.

Commit 3c56b8d

Browse files
committed
update javadoc
1 parent 8f91b99 commit 3c56b8d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/main/java/io/github/benas/easyproperties/PropertiesInjectionTask.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
import java.util.logging.Level;
3030
import java.util.logging.Logger;
3131

32+
/**
33+
* Background task for configuration hot reloading.
34+
*
35+
* @author Mahmoud Ben Hassine ([email protected])
36+
*/
3237
class PropertiesInjectionTask implements Runnable {
3338

3439
private static Logger LOGGER = Logger.getLogger(PropertiesInjectionTask.class.getName());

src/main/java/io/github/benas/easyproperties/ReflectionUtils.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@
2828
import java.util.Arrays;
2929
import java.util.List;
3030

31+
/**
32+
* Reflection utilities.
33+
*
34+
* @author Mahmoud Ben Hassine ([email protected])
35+
*/
3136
class ReflectionUtils {
3237

3338
public static List<Field> getAllFields(final Object object) {
@@ -37,6 +42,10 @@ public static List<Field> getAllFields(final Object object) {
3742
return allFields;
3843
}
3944

45+
private ReflectionUtils() {
46+
47+
}
48+
4049
private static List<Field> getDeclaredFields(final Object object) {
4150
return new ArrayList<>(Arrays.asList(object.getClass().getDeclaredFields()));
4251
}

0 commit comments

Comments
 (0)