Skip to content

Commit

Permalink
fixed variable name and typos in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
grobmeier committed Dec 12, 2023
1 parent 3a33ac0 commit f6a504d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/apache/log4j/chainsaw/LogUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,13 @@ public LogUI(SettingsManager settingsManager) {


/**
* Registers a ShutdownListener with this calss so that it can be notified
* Registers a ShutdownListener with this class so that it can be notified
* when the user has requested that Chainsaw exit.
*
* @param l
* @param listener the listener to add
*/
public void addShutdownListener(ShutdownListener l) {
shutdownListenerList.add(ShutdownListener.class, l);
public void addShutdownListener(ShutdownListener listener) {
shutdownListenerList.add(ShutdownListener.class, listener);
}

/**
Expand Down

0 comments on commit f6a504d

Please sign in to comment.