Skip to content
Snippets Groups Projects
Select Git revision
  • 11b6c68b5a2391a05a93f6c1c728cf210072b078
  • master default protected
  • sdas
3 results

Cohort.java

Blame
  • Forked from NASR Alexis / Programmation2
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ShapeReader.java 526 B
    package serializer;
    
    import shape.Shape;
    
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.List;
    import java.util.stream.Collector;
    
    public class ShapeReader {
        public static List<Shape> read(File file) throws IOException {
            BufferedReader bufferedReader = new BufferedReader(new FileReader(file));
            /*for(String line : bufferedReader.lines().toList()) {
                System.out.println(line);
            }*/
            return null;
        }
    }