summaryrefslogtreecommitdiff
path: root/java/src/IceUtil/OutputBase.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
commit59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch)
treec3ed292df270f11157decb83827d9af4144db52d /java/src/IceUtil/OutputBase.java
parentfile run.py was initially added on branch location. (diff)
downloadice-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.java14
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();
}