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-05-02 14:33:02 -07:00
parent 41c63c1028
commit ba1f690bba
@@ -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 = {}
}