More style fixes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5242 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-19 09:50:20 +00:00
parent 6b1d65553f
commit d01715a369
22 changed files with 90 additions and 102 deletions
@@ -33,7 +33,7 @@ public interface ChatDisplay
/**
* Called to clear the chat display.
*/
public void clear ();
void clear ();
/**
* Called to display a chat message.
@@ -42,6 +42,6 @@ public interface ChatDisplay
* already displayed this message, false otherwise.
*
* @return true if the message was displayed, false if not.
*/
public boolean displayMessage (ChatMessage msg, boolean alreadyDisplayed);
*/
boolean displayMessage (ChatMessage msg, boolean alreadyDisplayed);
}