diff --git a/src/main/java/io/ebean/config/ServerConfig.java b/src/main/java/io/ebean/config/ServerConfig.java index 2d22890bd..1abf7bb56 100644 --- a/src/main/java/io/ebean/config/ServerConfig.java +++ b/src/main/java/io/ebean/config/ServerConfig.java @@ -633,12 +633,11 @@ public class ServerConfig { * * } * - * @param cls The - * @param

- * @return + * @param cls The type of the service object to obtain + * @return The service object given the class type */ public

P getServiceObject(Class

cls) { - return (P)serviceObject.get(serviceObjectKey(cls)); + return (P) serviceObject.get(serviceObjectKey(cls)); } /**