Blame akka-2.3.0-typesafe-config-1.3.0.patch

c8a5ac
--- akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala
c8a5ac
+++ akka-2.3.16/akka-actor/src/main/scala/akka/dispatch/CachingConfig.scala
c8a5ac
@@ -178,5 +178,17 @@
c8a5ac
   def resolveWith(source: Config, options: ConfigResolveOptions) = config.resolveWith(source, options)
c8a5ac
 
c8a5ac
   def resolveWith(source: Config) = config.resolveWith(source)
c8a5ac
+
c8a5ac
+  def getDuration(path: String) = config.getDuration(path)
c8a5ac
+
c8a5ac
+  def getDurationList(path: String) = config.getDurationList(path)
c8a5ac
+
c8a5ac
+  def getIsNull(path: String) = config.getIsNull(path)
c8a5ac
+
c8a5ac
+  def getMemorySize(path: String) = config.getMemorySize(path)
c8a5ac
+
c8a5ac
+  def getMemorySizeList(path: String) = config.getMemorySizeList(path)
c8a5ac
+
c8a5ac
+  def hasPathOrNull(path: String) = config.hasPathOrNull(path)
c8a5ac
 }
c8a5ac