aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-04-21 07:06:48 -0500
committerGitHub <noreply@github.com>2017-04-21 07:06:48 -0500
commit522f015f702f92fd30d53abb900ae5bf24f650e1 (patch)
tree2190de0245f4f2e9cbd675e679a4823768e250bf
parent7fe1d16adef09f1a2a7c1c65bf064567224172d7 (diff)
parent9668570f246d626d36c8ab95061bf21f19ef7bde (diff)
downloadcbt-522f015f702f92fd30d53abb900ae5bf24f650e1.tar.gz
cbt-522f015f702f92fd30d53abb900ae5bf24f650e1.tar.bz2
cbt-522f015f702f92fd30d53abb900ae5bf24f650e1.zip
Merge pull request #491 from Jasper-M/patch-1
Fix copy&paste error in ContextImplementation
-rw-r--r--stage1/ContextImplementation.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/ContextImplementation.scala b/stage1/ContextImplementation.scala
index 6762cb8..6df0d07 100644
--- a/stage1/ContextImplementation.scala
+++ b/stage1/ContextImplementation.scala
@@ -25,7 +25,7 @@ class ContextImplementation(
@deprecated("this method is replaced by start","")
def startCompat = start
@deprecated("this methods is replaced by persistentCache","")
- def permanentKeys = throw new IncompatibleCbtVersionException("You need to upgrade your CBT version in this module. The Context field permanentClassLoaders is no longer supported.");
+ def permanentKeys = throw new IncompatibleCbtVersionException("You need to upgrade your CBT version in this module. The Context field permanentKeys is no longer supported.");
@deprecated("this methods is replaced by persistentCache","")
def permanentClassLoaders = throw new IncompatibleCbtVersionException("You need to upgrade your CBT version in this module. The Context field permanentClassLoaders is no longer supported.");
}