All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.utils.ListUtils Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.utils;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by cng19 on 2017/6/26.
 */
public class ListUtils {
  
  public static  List list(T t) {
    List result = new ArrayList();
    if (t != null) {
      result.add(t);
    }
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy