Make Repository private[sbt]

This trait may not even survive until 1.4.0. It should definitely not be
public. I got a little overexcited about programming with higher kinded
types when I added it.
This commit is contained in:
Ethan Atkins 2019-04-17 17:44:12 -07:00
parent 41c63c1028
commit ba1f690bba
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import scala.collection.JavaConverters._
* @tparam K the key type
* @tparam V the value type
*/
trait Repository[M[_], K, V] extends AutoCloseable {
private[sbt] trait Repository[M[_], K, V] extends AutoCloseable {
def get(key: K): M[V]
override def close(): Unit = {}
}