(Class<T> clazz)
| 20 | |
| 21 | public class FactoryImpl implements Factory { |
| 22 | @Override @SuppressWarnings("unchecked") |
| 23 | public <T extends Face> T[] makeArray(Class<T> clazz) { |
| 24 | return (T[]) java.lang.reflect.Array.newInstance(clazz, 0); |
| 25 | } |
| 26 | |
| 27 | /*public static void main(String[] args) { |
| 28 | Factory factory = new FactoryImpl(); |
nothing calls this directly
no test coverage detected