= #17380 fix doc comments for java8 doclint
* actor and cluster-metrics comments * agent/camel/cluster/osgi/persistence/remote comments * comments in contrib/persistence-tck/multi-node/typed
This commit is contained in:
parent
bd280e3252
commit
18688fc84b
90 changed files with 287 additions and 329 deletions
|
|
@ -115,8 +115,8 @@ class Serialization(val system: ExtendedActorSystem) extends Extension {
|
|||
/**
|
||||
* Returns the Serializer configured for the given object, returns the NullSerializer if it's null.
|
||||
*
|
||||
* @throws akka.ConfigurationException if no `serialization-bindings` is configured for the
|
||||
* class of the object
|
||||
* Throws akka.ConfigurationException if no `serialization-bindings` is configured for the
|
||||
* class of the object.
|
||||
*/
|
||||
def findSerializerFor(o: AnyRef): Serializer = o match {
|
||||
case null ⇒ NullSerializer
|
||||
|
|
@ -130,7 +130,7 @@ class Serialization(val system: ExtendedActorSystem) extends Extension {
|
|||
* ambiguity it is primarily using the most specific configured class,
|
||||
* and secondly the entry configured first.
|
||||
*
|
||||
* @throws java.io.NotSerializableException if no `serialization-bindings` is configured for the class
|
||||
* Throws java.io.NotSerializableException if no `serialization-bindings` is configured for the class.
|
||||
*/
|
||||
def serializerFor(clazz: Class[_]): Serializer =
|
||||
serializerMap.get(clazz) match {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue