changes
[IRC.git] / Robust / src / Lex / Comment.java
index 6a0aae4b814fac26782e4e91d252d21c9a048162..2e02ff41153c7052bb7594274ed1635ddd071c08 100644 (file)
@@ -3,14 +3,16 @@ package Lex;
 abstract class Comment extends InputElement {
   private StringBuffer comment = new StringBuffer();
 
-  String getComment() { return comment.toString(); }
+  String getComment() {
+    return comment.toString();
+  }
 
   void appendLine(String more) { // 'more' is '\n' terminated.
     int i=0;
 
     // skip leading white space.
     for (; i<more.length(); i++)
-      if (!Character.isSpaceChar(more.charAt(i))) 
+      if (!Character.isSpaceChar(more.charAt(i)))
        break;
 
     // skip any leading stars.