Charles Chan
Committed by Gerrit Code Review

Fix javadoc parameters

Change-Id: I89540d376c2e6794f66a446684fb952bf27e0f83
...@@ -70,7 +70,7 @@ public class InterfaceEvent extends AbstractEvent<InterfaceEvent.Type, Interface ...@@ -70,7 +70,7 @@ public class InterfaceEvent extends AbstractEvent<InterfaceEvent.Type, Interface
70 * 70 *
71 * @param type event type 71 * @param type event type
72 * @param subject subject interface 72 * @param subject subject interface
73 - * @param subject previous interface subject 73 + * @param prevSubject previous interface subject
74 */ 74 */
75 public InterfaceEvent(Type type, Interface subject, Interface prevSubject) { 75 public InterfaceEvent(Type type, Interface subject, Interface prevSubject) {
76 super(type, subject); 76 super(type, subject);
...@@ -82,7 +82,7 @@ public class InterfaceEvent extends AbstractEvent<InterfaceEvent.Type, Interface ...@@ -82,7 +82,7 @@ public class InterfaceEvent extends AbstractEvent<InterfaceEvent.Type, Interface
82 * 82 *
83 * @param type event type 83 * @param type event type
84 * @param subject subject interface 84 * @param subject subject interface
85 - * @param subject previous interface subject 85 + * @param prevSubject previous interface subject
86 * @param time time of event 86 * @param time time of event
87 */ 87 */
88 public InterfaceEvent(Type type, Interface subject, Interface prevSubject, long time) { 88 public InterfaceEvent(Type type, Interface subject, Interface prevSubject, long time) {
......