You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an object definition MyName who has a nested object definition also named MyName. This seems to terminate the javadoc generation abruptly (javadoc exited with exit code 1).
Here's MyName.scala:
packagemy.namespace/** Something about MyName.*/sealedtraitMyNameextendsProductwithSerializable {
valvalue:Int
}
objectMyName {
defapply(value: Int):MyName= value match {
case1=>MyNamecase2=>KnownNamecase _ =>thrownewIllegalArgumentException(s"$value is not a valid MyName")
}
defunapply(arg: MyName):Option[Int] =Some(arg.value)
/** Something about MyName.MyName.*/caseobjectMyNameextendsMyName {
overridevalvalue=1
}
/** Something about MyName.KnownName.*/caseobjectKnownNameextendsMyName {
overridevalvalue=2
}
}
I have an object definition
MyName
who has a nested object definition also namedMyName
. This seems to terminate the javadoc generation abruptly (javadoc exited with exit code 1
).Here's
MyName.scala
:sbt output:
The text was updated successfully, but these errors were encountered: