summaryrefslogtreecommitdiff
path: root/bincompat-backward.whitelist.conf
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2016-03-23 09:52:18 +0100
committerLukas Rytz <lukas.rytz@typesafe.com>2016-03-23 09:52:18 +0100
commit4ef14294453c43420e0e1a2ac984ba4a2d8b8dca (patch)
tree8b4aac09b51e6484fb3d6292838262d7d64fa7da /bincompat-backward.whitelist.conf
parent46595fb5fb4c548d52e39969aa58c69c30953bec (diff)
parentd832346268779090f08afad649a337ca571efc37 (diff)
downloadscala-4ef14294453c43420e0e1a2ac984ba4a2d8b8dca.tar.gz
scala-4ef14294453c43420e0e1a2ac984ba4a2d8b8dca.tar.bz2
scala-4ef14294453c43420e0e1a2ac984ba4a2d8b8dca.zip
Merge pull request #5056 from viktorklang/wip-SI9488-Future.toString-√
SI-9488 - adds the same default toString format to Scala Futures as 2…
Diffstat (limited to 'bincompat-backward.whitelist.conf')
-rw-r--r--bincompat-backward.whitelist.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/bincompat-backward.whitelist.conf b/bincompat-backward.whitelist.conf
index 0d85590b41..0770b3cb95 100644
--- a/bincompat-backward.whitelist.conf
+++ b/bincompat-backward.whitelist.conf
@@ -217,6 +217,12 @@ filter {
{
matchName="scala.concurrent.impl.Promise$DefaultPromise"
problemName=MissingTypesProblem
+ },
+ // SI-9488: Due to SI-8362 above, toString was silently changed to the AtomicReference toString implementation,
+ // This is fixed by SI-9488, and this should be safe since the class in question is stdlib internal.
+ {
+ matchName="scala.concurrent.impl.Promise.toString"
+ problemName=MissingMethodProblem
}
]
}