Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

Commit

Permalink
Fix code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Dec 16, 2015
1 parent 8e10923 commit df8556b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/qz/common/TrayManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -519,14 +519,15 @@ public static String getPorts(Server server) {
}

/**
* Thread safe method for setting the warning status message
* Thread safe method for setting an info status message
*/
public void displayInfoMessage(String text) {
displayMessage(name, text, Level.INFO);
}

/**
* Thread safe method for setting the warning status message
* Thread safe method for setting a fine status message. Fine messages are suppressed unless "Show all
* notifications" is checked.
*/
public void displayFineMessage(String text) {
displayMessage(name, text, Level.FINE);
Expand Down

0 comments on commit df8556b

Please sign in to comment.