Skip to content

Commit

Permalink
remove warnings #498
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Jun 19, 2024
1 parent 1d567ac commit f69e02c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lphy/src/main/java/lphy/core/logger/ValueFormatResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ public Class<? extends ValueFormatter> getFormatterClass(Class<?> valueType, Map
* @param valFmtCls The class of {@link ValueFormatter}
* @param value {@link Value}
* @param extraArgs array of objects to be passed as extra arguments to the constructor call,
* besides valueId and value at the base constructor
* {@link ValueFormatter.Base(String, Object)}.
* besides valueId and value at the base constructor ValueFormatter.Base(String, Object).
* E.g. boolean to check if the data is clamped.
* @return If the given {@link Value} is an array,
* return a list of {@link ArrayElementFormatter} or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ public static Value createValue(Object value, DeterministicFunction generator) {
return new Value(null, value, generator);
}

/**TODO does this handle List<T[]> ?
//TODO does this handle List<T[]> ?
/**
* This is used to handle generic array, which has to be initiated as Object[].
* @param arr2List generic type
* @param generator a {@link DeterministicFunction}
Expand Down

0 comments on commit f69e02c

Please sign in to comment.