Here you can find the source of addToList(List list, Object obj)
private static void addToList(List list, Object obj)
//package com.java2s; // The MIT License (MIT) import java.util.List; public class Main { private static void addToList(List list, Object obj) { list.add(obj); // Unchecked warning }/*from w w w . j av a2 s . c o m*/ }