File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/reflect/scala/reflect Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ import scala.annotation.tailrec
5959 * @groupprio Factories 1
6060 * @groupname Copying Tree Copying
6161 * @groupprio Copying 1
62- * @contentDiagram hideNodes "*Api"
62+ *
63+ * @contentDiagram hideNodes "*Api"
6364 * @group ReflectionAPI
6465 */
6566trait Trees { self : Universe =>
Original file line number Diff line number Diff line change @@ -881,7 +881,7 @@ trait Definitions extends api.StandardDefinitions {
881881 def volatileUpperBound = isVolatile(tp.upperBound)
882882 def safeIsVolatile = (
883883 if (volatileRecursions < TypeConstants .LogVolatileThreshold )
884- isVolatile(tp.upperBound)
884+ volatileUpperBound
885885 // we can return true when pendingVolatiles contains sym, because
886886 // a cycle will be detected afterwards and an error will result anyway.
887887 else pendingVolatiles(sym) || {
You can’t perform that action at this time.
0 commit comments