blob: 50ae32571803f84b5f81d2b669fd9043820ec15b [file] [log] [blame]
import java.util.*;
class First {
public static <T> List<T> first(final Class<T> type, boolean tags) {
return null;
}
public static <T> List<T> first(final Class<T> type) {
return first(type, <caret>true);
}
}