Skip to content
Snippets Groups Projects
Select Git revision
  • 26e5a9d904fce00e9604940ecf726ba2ecdb9fc7
  • main default protected
  • variant
3 results

FireFighter.class

Blame
  • Forked from LABOUREL Arnaud / Firefighter template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ShapeWriter.java 356 B
    package serializer;
    
    import shape.Shape;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.List;
    
    public class ShapeWriter {
        public static void write (File file, List<Shape> shapes) throws IOException {
            PrintWriter printWriter = new PrintWriter(file);
            printWriter.println("Coucou");
        }
    }