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 committed Aug 2, 2018
1 parent d5bc4f1 commit 254431b
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 @@ -21,7 +21,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 @@ -22,7 +22,7 @@ import scala.annotation.tailrec
@InternalApi class AsyncDnsCache extends Dns with PeriodicCacheCleanup {
private val cache = new AtomicReference(new Cache[(String, QueryType), immutable.Seq[ResourceRecord]](
immutable.SortedSet()(expiryEntryOrdering()),
immutable.Map(), clock))
immutable.Map(), () clock))

private val nanoBase = System.nanoTime()

Expand Down

0 comments on commit 254431b

Please sign in to comment.