fix java doc error

This commit is contained in:
金戟 2021-02-21 13:55:48 +08:00
parent 48d6ef328b
commit b1e6ad58cc
2 changed files with 2 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public class ClassUtil {
/** /**
* get method name and descriptor to convert wrapper type to primary type * get method name and descriptor to convert wrapper type to primary type
* @param primaryType byte code of private type * @param primaryType byte code of private type
* @return pair of <method-name, method-descriptor> * @return pair of [method-name, method-descriptor]
*/ */
public static ImmutablePair<String, String> getWrapperTypeConvertMethod(byte primaryType) { public static ImmutablePair<String, String> getWrapperTypeConvertMethod(byte primaryType) {
return WRAPPER_METHOD_MAPPING.get(primaryType); return WRAPPER_METHOD_MAPPING.get(primaryType);

View File

@ -27,6 +27,7 @@ public class CollectionUtil {
/** /**
* Generate a list of item * Generate a list of item
* @param items elements to add * @param items elements to add
* @param <T> type of element
* @return a ArrayList of provided elements * @return a ArrayList of provided elements
*/ */
public static <T> List<T> listOf(T... items) { public static <T> List<T> listOf(T... items) {