Newer
Older
package serializer;
import shape.Shape;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.stream.Collector;
public class ShapeReader {
public static List<Shape> read(File file, Collector<Object,?, List<Object>> toList) throws IOException {
return null;
}
}