We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5888c7d + 4593b12 commit 5c6a0dbCopy full SHA for 5c6a0db
src/library/scala/runtime/LambdaDeserializer.scala
@@ -116,11 +116,4 @@ object LambdaDeserializer {
116
val captures = Array.tabulate(serialized.getCapturedArgCount)(n => serialized.getCapturedArg(n))
117
factory.invokeWithArguments(captures: _*)
118
}
119
-
120
- private[this] val JavaIOSerializable = {
121
- // We could actually omit this marker interface as LambdaMetaFactory will add it if
122
- // the FLAG_SERIALIZABLE is set and of the provided markers extend it. But the code
123
- // is cleaner if we uniformly add a single marker, so I'm leaving it in place.
124
- "java.io.Serializable"
125
- }
126
0 commit comments