I noticed that the Board class has responsibility for loading and outputting FEN strings, and that you have a PgnHolder for reading and writing PGNs to files. I wondered if I could contribute a more java.io idiomatic way of doing this, e.g.
Iterator<Game> iter = new PgnParser(reader).iterator();
Game game = iter.next();
PgnWriter writer = new PgnWriter(appendable);
writer.write(game);
Hi,
I noticed that the Board class has responsibility for loading and outputting FEN strings, and that you have a PgnHolder for reading and writing PGNs to files. I wondered if I could contribute a more java.io idiomatic way of doing this, e.g.
What do you think?