[LIB-9] Move builder and parser interfaces from core to format module
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / tcd / TCDBuilder.java
index ea9355f..532957d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018-2019. Developed by Hedgecode.
+ * Copyright (c) 2018-2020. Developed by Hedgecode.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,13 +18,13 @@ package org.hedgecode.chess.tcd;
 
 import java.util.Map;
 
+import org.hedgecode.chess.Builder;
 import org.hedgecode.chess.Builders;
 import org.hedgecode.chess.Parsers;
-import org.hedgecode.chess.position.Builder;
+import org.hedgecode.chess.ParseException;
 import org.hedgecode.chess.position.Castle;
 import org.hedgecode.chess.position.Color;
 import org.hedgecode.chess.position.ColorPiece;
-import org.hedgecode.chess.position.ParseException;
 import org.hedgecode.chess.position.Piece;
 import org.hedgecode.chess.position.Position;
 import org.hedgecode.chess.position.Positions;