switch to spaces only..
[IRC.git] / Robust / src / Lex / Comment.java
index 2e02ff41153c7052bb7594274ed1635ddd071c08..a9c550485b3ac42d7e9843e2d538ab9ae10d5e81 100644 (file)
@@ -13,12 +13,12 @@ abstract class Comment extends InputElement {
     // skip leading white space.
     for (; i<more.length(); i++)
       if (!Character.isSpaceChar(more.charAt(i)))
-       break;
+        break;
 
     // skip any leading stars.
     for (; i<more.length(); i++)
       if (more.charAt(i)!='*')
-       break;
+        break;
 
     // the rest of the string belongs to the comment.
     if (i<more.length())