fix warnings

pull/6945/head
Thibault Duplessis 2020-07-06 08:27:15 +02:00
parent 02e9c7f0fd
commit 0765db15cb
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ final private class ChapterMaker(
}
}
private def fromGame(
private[study] def fromGame(
study: Study,
game: Game,
data: Data,
@ -158,7 +158,7 @@ final private class ChapterMaker(
)
}
def game2root(game: Game, initialFen: Option[FEN] = None): Fu[Node.Root] =
private[study] def game2root(game: Game, initialFen: Option[FEN]): Fu[Node.Root] =
initialFen.fold(gameRepo initialFen game) { fen =>
fuccess(fen.some)
} map { GameToRoot(game, _, withClocks = true) }