Skip to content
Snippets Groups Projects
Commit 638ea2d4 authored by Sho SHIMIZU's avatar Sho SHIMIZU
Browse files

Fix mismatches of parameter names in Javadoc.

parent 2cb1aee6
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,6 @@ public class CountSeries { ...@@ -63,7 +63,6 @@ public class CountSeries {
/** /**
* Return a long that is the number of milliseconds in a ds (second/minute/hour/day/week). (Utility method.) * Return a long that is the number of milliseconds in a ds (second/minute/hour/day/week). (Utility method.)
* *
* @param d
* @param ds * @param ds
* @return * @return
*/ */
......
...@@ -139,7 +139,8 @@ public class CounterStore { ...@@ -139,7 +139,8 @@ public class CounterStore {
* Create a new ICounter and set the title. Note that the title must be unique, otherwise this will * Create a new ICounter and set the title. Note that the title must be unique, otherwise this will
* throw an IllegalArgumentException. * throw an IllegalArgumentException.
* *
* @param title * @param key
* @param type
* @return * @return
*/ */
public ICounter createCounter(String key, CounterValue.CounterType type) { public ICounter createCounter(String key, CounterValue.CounterType type) {
......
...@@ -63,7 +63,7 @@ public interface ICounter { ...@@ -63,7 +63,7 @@ public interface ICounter {
* Returns a CountSeries that is a snapshot of the counter's values for the given dateSpan. (Further changes * Returns a CountSeries that is a snapshot of the counter's values for the given dateSpan. (Further changes
* to this counter won't be reflected in the CountSeries that comes back.) * to this counter won't be reflected in the CountSeries that comes back.)
* *
* @param startDate * @param dateSpan
* @return * @return
*/ */
public CountSeries snapshot(DateSpan dateSpan); public CountSeries snapshot(DateSpan dateSpan);
......
...@@ -1285,7 +1285,7 @@ public class DeviceManagerImpl implements IDeviceManager, IOFMessageListener, ...@@ -1285,7 +1285,7 @@ public class DeviceManagerImpl implements IDeviceManager, IOFMessageListener,
* Puts an update in queue to indicate the Device moved. Must be called * Puts an update in queue to indicate the Device moved. Must be called
* from within the write lock. * from within the write lock.
* @param device The device that has moved. * @param device The device that has moved.
* @param oldPort The old switchport * @param oldSwPort The old switchport
* @param newDap The new attachment point * @param newDap The new attachment point
*/ */
protected void updateMoved(Device device, SwitchPortTuple oldSwPort, protected void updateMoved(Device device, SwitchPortTuple oldSwPort,
...@@ -1341,7 +1341,7 @@ public class DeviceManagerImpl implements IDeviceManager, IOFMessageListener, ...@@ -1341,7 +1341,7 @@ public class DeviceManagerImpl implements IDeviceManager, IOFMessageListener,
/** /**
* Removes any attachment points that are in the same * Removes any attachment points that are in the same
* {@link net.floodlightcontroller.topology.SwitchCluster SwitchCluster} * {@link net.floodlightcontroller.topology.SwitchCluster SwitchCluster}
* @param The device to update the attachment points * @param d The device to update the attachment points
*/ */
public void cleanupAttachmentPoints(Device d) { public void cleanupAttachmentPoints(Device d) {
// The long here is the SwitchCluster ID // The long here is the SwitchCluster ID
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment