Commit 05be8981 authored by gmessner's avatar gmessner
Browse files

Cleaned up some comments.

parent 605f0778
...@@ -110,7 +110,7 @@ public class WebHook { ...@@ -110,7 +110,7 @@ public class WebHook {
/** /**
* Adds a WebHook event listener. * Adds a WebHook event listener.
* *
* @param l the SMTPStatusListener to add * @param listener the WebHookListener to add
*/ */
public static synchronized void addListener (WebHookListener listener) { public static synchronized void addListener (WebHookListener listener) {
...@@ -121,9 +121,9 @@ public class WebHook { ...@@ -121,9 +121,9 @@ public class WebHook {
/** /**
* Removes a SMTP event listener. * Removes a WebHook event listener.
* *
* @param l the SMTPStatusListener to remove * @param listener the WebHookListener to remove
*/ */
public static synchronized void removeListener (WebHookListener listener) { public static synchronized void removeListener (WebHookListener listener) {
webhookListeners.remove(listener); webhookListeners.remove(listener);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment