Skip to content

Commit

Permalink
Manually eta-expand see scala/scala-collection-compat#131
Browse files Browse the repository at this point in the history
  • Loading branch information
MasseGuillaume authored and raboof committed Dec 7, 2018
1 parent 6c8fcd8 commit 7414b75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion akka-actor/src/main/scala/akka/io/SimpleDnsCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SimpleDnsCache extends Dns with PeriodicCacheCleanup {

private val cache = new AtomicReference(new Cache[String, Dns.Resolved](
immutable.SortedSet()(expiryEntryOrdering[String]()),
Map(), clock))
Map(), () clock))

private val nanoBase = System.nanoTime()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import scala.concurrent.duration._
@InternalApi class AsyncDnsCache extends Dns with PeriodicCacheCleanup {
private val cacheRef = new AtomicReference(new Cache[(String, QueryType), Answer](
immutable.SortedSet()(expiryEntryOrdering()),
immutable.Map(), clock))
immutable.Map(), () clock))

private val nanoBase = System.nanoTime()

Expand Down

0 comments on commit 7414b75

Please sign in to comment.