All Downloads are FREE. Search and download functionalities are using the official Maven repository.

coursier.util.Cache.scala Maven / Gradle / Ivy

There is a newer version: 2.1.13
Show newest version
package coursier.util

import java.util.concurrent.ConcurrentMap

private[coursier] object Cache {
  def createCache[T >: Null](): ConcurrentMap[T, T]                       = null
  def cacheMethod[T >: Null](instanceCache: ConcurrentMap[T, T])(t: T): T = t
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy