From 9e4433b7628e272fc8a3be7ae1842b24b8d7b233 Mon Sep 17 00:00:00 2001 From: Sho SHIMIZU <shimizu.sho@jp.fujitsu.com> Date: Wed, 11 Apr 2012 21:04:18 +0900 Subject: [PATCH] Fix typo and spelling in Javadoc comments --- .../core/module/FloodlightModuleContext.java | 2 +- .../net/floodlightcontroller/core/module/IFloodlightModule.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java b/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java index cc267d6d1..c26a595b6 100644 --- a/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java +++ b/src/main/java/net/floodlightcontroller/core/module/FloodlightModuleContext.java @@ -29,7 +29,7 @@ public class FloodlightModuleContext implements IFloodlightModuleContext { /** * Adds a IFloodlightModule for this Context. * @param clazz the service class - * @param module The IFloodlightModule to add to the registry + * @param service The IFloodlightService to add to the registry */ public void addService(Class<? extends IFloodlightService> clazz, IFloodlightService service) { diff --git a/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java b/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java index 23f1ad71d..f8b196b23 100644 --- a/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java +++ b/src/main/java/net/floodlightcontroller/core/module/IFloodlightModule.java @@ -41,7 +41,7 @@ public interface IFloodlightModule { * Get a list of Modules that this module depends on. The module system * will ensure that each these dependencies is resolved before the * subsequent calls to init(). - * @return The Collection of IFloodlightServices that this module depnds + * @return The Collection of IFloodlightServices that this module depends * on. */ -- GitLab