Skip to content

Commit a094b54

Browse files
Remove final keyword from NameOps to explor fix for build failure
1 parent 9811e61 commit a094b54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/src/dotty/tools/dotc/core/NameOps.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ object NameOps {
2727
*/
2828
def apply(s: String)(implicit ctx: Context): String = {
2929
val marker = "$$$$"
30-
final val LIMIT: Int = 240
30+
31+
val limit: Int = 240
3132
val MaxNameLength = (limit - 6) min 2 * (limit - 6 - 2 * marker.length - 32)
3233

3334
def toMD5(s: String, edge: Int): String = {

0 commit comments

Comments
 (0)