No effective change - javadoc for ServerConfig getServiceObject

This commit is contained in:
rob bygrave
2018-12-19 21:20:37 +13:00
parent ea02bebc6f
commit 84f7fc5d81
@@ -633,12 +633,11 @@ public class ServerConfig {
*
* }</pre>
*
* @param cls The
* @param <P>
* @return
* @param cls The type of the service object to obtain
* @return The service object given the class type
*/
public <P> P getServiceObject(Class<P> cls) {
return (P)serviceObject.get(serviceObjectKey(cls));
return (P) serviceObject.get(serviceObjectKey(cls));
}
/**