summaryrefslogtreecommitdiff
path: root/sources/ch/epfl/lamp
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-11-18 10:14:50 +0000
committerpaltherr <paltherr@epfl.ch>2003-11-18 10:14:50 +0000
commit319d4a304fe2c4e900bf99e99e4c7c9668faed16 (patch)
treeef065951ccd9fb5cbef41876861712cd467d154e /sources/ch/epfl/lamp
parent35ff40f25baac698b0794701961c420f94174e35 (diff)
downloadscala-319d4a304fe2c4e900bf99e99e4c7c9668faed16.tar.gz
scala-319d4a304fe2c4e900bf99e99e4c7c9668faed16.tar.bz2
scala-319d4a304fe2c4e900bf99e99e4c7c9668faed16.zip
- Fixed initiali value of align
Diffstat (limited to 'sources/ch/epfl/lamp')
-rw-r--r--sources/ch/epfl/lamp/util/CodePrinter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/ch/epfl/lamp/util/CodePrinter.java b/sources/ch/epfl/lamp/util/CodePrinter.java
index 38b458c8fc..7bce133a43 100644
--- a/sources/ch/epfl/lamp/util/CodePrinter.java
+++ b/sources/ch/epfl/lamp/util/CodePrinter.java
@@ -71,7 +71,7 @@ public class CodePrinter {
this.writer = writer;
this.step = step;
this.level = 0;
- this.align = false;
+ this.align = true;
this.space = false;
this.line = false;
}