demonstrate that opening moves are not used

This commit is contained in:
Thibault Duplessis 2016-01-23 11:27:39 +07:00
parent 500d0fc68f
commit 38f720fbf4

View file

@ -4,11 +4,11 @@ case class Ecopening(
eco: Ecopening.ECO,
family: Ecopening.FamilyName,
name: String,
moves: String,
private val moves: String,
fen: Ecopening.FEN,
lastMoveUci: String) extends Ordered[Ecopening] {
lazy val moveList = moves.split(' ').toList
private lazy val moveList = moves.split(' ').toList
def firstMove = moveList.headOption