Skip to content

Commit da6d7c6

Browse files
authored
Merge pull request #3242 from dotty-staging/no-final-val
TastyFormat: Don't use final vals for MajorVersion/MinorVersion
2 parents 432ceac + a8efb28 commit da6d7c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/dotty/tools/dotc/core/tasty/TastyFormat.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ Standard Section: "Positions" Assoc*
230230
object TastyFormat {
231231

232232
final val header = Array(0x5C, 0xA1, 0xAB, 0x1F)
233-
final val MajorVersion = 1
234-
final val MinorVersion = 0
233+
val MajorVersion = 1
234+
val MinorVersion = 0
235235

236236
// Name tags
237237

0 commit comments

Comments
 (0)