From 6a5f0f2af25ac479e231624526962bbb7cb734d5 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Wed, 20 Mar 2019 13:56:23 -0700 Subject: [PATCH] Make Stamped.file private[sbt] --- main-command/src/main/scala/sbt/Stamped.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main-command/src/main/scala/sbt/Stamped.scala b/main-command/src/main/scala/sbt/Stamped.scala index 32fad1465..9613e6d25 100644 --- a/main-command/src/main/scala/sbt/Stamped.scala +++ b/main-command/src/main/scala/sbt/Stamped.scala @@ -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) /**