Skip to content

Commit 83e6a7c

Browse files
committed
Fixup unexplained compile error 'ILoop.scala:358: diverging implicit e'
1 parent b8d4b86 commit 83e6a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/repl/scala/tools/nsc/interpreter/ILoop.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ class ILoop(in0: Option[BufferedReader], protected val out: JPrintWriter) extend
363363
}
364364

365365
private def changeSettings(line: String): Result = {
366-
def showSettings() = for (s <- settings.userSetSettings.toSeq.sorted) echo(s.toString)
366+
def showSettings() = for (s <- settings.userSetSettings.toSeq) echo(s.toString)
367367
if (line.isEmpty) showSettings() else { updateSettings(line) ; () }
368368
}
369369
private def updateSettings(line: String) = {

0 commit comments

Comments
 (0)