Skip to content
Snippets Groups Projects
ShapeReader.java 315 B
Newer Older
  • Learn to ignore specific revisions
  • BasileCouetoux's avatar
    BasileCouetoux committed
    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;
        }
    }