Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / Lex / EscapedUnicodeReader.java
index 25bbbcd3dad6bda73ce3252e50b21418888bc2f7..69704d8a47bcc1eba1761d5879fa0881ec699187 100644 (file)
@@ -13,7 +13,7 @@ public class EscapedUnicodeReader extends FilterReader {
     super(in);
   }
   public int read() throws IOException {
-    int r = (pushback==-1) ? in.read() : pushback; pushback=-1;
+    int r = (pushback==-1)?in.read():pushback; pushback=-1;
 
     if (r!='\\') {
       isEvenSlash=true;
@@ -55,7 +55,7 @@ public class EscapedUnicodeReader extends FilterReader {
   public int read(char cbuf[], int off, int len) throws IOException {
     for (int i=0; i<len; i++) {
       int c = read();
-      if (c==-1) return (i==0) ? -1 : i; // end of stream reached.
+      if (c==-1) return (i==0)?-1:i;      // end of stream reached.
       else cbuf[i+off] = (char) c;
     }
     return len;