mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
11 lines
227 B
Java
11 lines
227 B
Java
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);
|
|
}
|
|
} |