diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
commit | 59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch) | |
tree | c3ed292df270f11157decb83827d9af4144db52d /java/src/IceUtil/OutputBase.java | |
parent | file run.py was initially added on branch location. (diff) | |
download | ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2 ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip |
removed spaces after keywords
Diffstat (limited to 'java/src/IceUtil/OutputBase.java')
-rw-r--r-- | java/src/IceUtil/OutputBase.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/java/src/IceUtil/OutputBase.java b/java/src/IceUtil/OutputBase.java index 80a7068ac82..938efc43d7c 100644 --- a/java/src/IceUtil/OutputBase.java +++ b/java/src/IceUtil/OutputBase.java @@ -65,9 +65,9 @@ public class OutputBase print(String s) { final char[] arr = s.toCharArray(); - for (int i = 0; i < arr.length; i++) + for(int i = 0; i < arr.length; i++) { - if (arr[i] == '\n') + if(arr[i] == '\n') { _pos = 0; } @@ -135,9 +135,9 @@ public class OutputBase int indent = _indent; - if (_useTab) + if(_useTab) { - while (indent >= 8) + while(indent >= 8) { indent -= 8; _out.print('\t'); @@ -146,7 +146,7 @@ public class OutputBase } else { - while (indent >= _indentSize) + while(indent >= _indentSize) { indent -= _indentSize; _out.print(" "); @@ -154,7 +154,7 @@ public class OutputBase } } - while (indent > 0) + while(indent > 0) { --indent; _out.print(' '); @@ -167,7 +167,7 @@ public class OutputBase public void sp() { - if (_separator) + if(_separator) { _out.println(); } |