mirror of
https://github.com/alibaba/testable-mock.git
synced 2025-01-19 16:50:46 +08:00
fix java doc error
This commit is contained in:
parent
48d6ef328b
commit
b1e6ad58cc
@ -147,7 +147,7 @@ public class ClassUtil {
|
||||
/**
|
||||
* get method name and descriptor to convert wrapper type to primary 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) {
|
||||
return WRAPPER_METHOD_MAPPING.get(primaryType);
|
||||
|
@ -27,6 +27,7 @@ public class CollectionUtil {
|
||||
/**
|
||||
* Generate a list of item
|
||||
* @param items elements to add
|
||||
* @param <T> type of element
|
||||
* @return a ArrayList of provided elements
|
||||
*/
|
||||
public static <T> List<T> listOf(T... items) {
|
||||
|
Loading…
Reference in New Issue
Block a user