Skip to content

Commit 3da5075

Browse files
committed
Fix for a little last minute breakage.
1 parent f2845f2 commit 3da5075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1905,7 +1905,7 @@ abstract class GenJVM extends SubComponent with GenJVMUtil with GenAndroid with
19051905
((sym.rawflags & (Flags.FINAL | Flags.MODULE)) != 0)
19061906
&& !sym.enclClass.isInterface
19071907
&& !sym.isClassConstructor
1908-
&& (sym.isLazy || sym.getter.isPrivate || !sym.isMutable) // fix for SI-3569, is it sufficient?
1908+
&& (sym.isLazy || sym.isPrivate || !sym.isMutable) // fix for SI-3569, is it sufficient?
19091909
)
19101910

19111911
mkFlags(

0 commit comments

Comments
 (0)