Make Stamped.file private[sbt]

This commit is contained in:
Ethan Atkins 2019-03-20 13:56:23 -07:00
parent fac6e0d9a0
commit 6a5f0f2af2
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ private[sbt] trait Stamped {
*/
private[sbt] object Stamped {
type File = JFile with Stamped
def file(typedPath: TypedPath, entry: FileCacheEntry): JFile with Stamped =
private[sbt] def file(typedPath: TypedPath, entry: FileCacheEntry): JFile with Stamped =
new StampedFileImpl(typedPath, entry.stamp)
/**