From ab5241b2251bf31568678389fdcdab16883d5ef5 Mon Sep 17 00:00:00 2001 From: Jan Koehnlein Date: Wed, 16 Nov 2011 10:32:45 +0100 Subject: [PATCH] [xtext] Setting default indentation to TAB (fixing tests) --- .../org/eclipse/xtext/formatting/IIndentationInformation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/formatting/IIndentationInformation.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/formatting/IIndentationInformation.java index 6f870413f..3a986e338 100644 --- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/formatting/IIndentationInformation.java +++ b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/formatting/IIndentationInformation.java @@ -24,7 +24,7 @@ public interface IIndentationInformation { */ class Default implements IIndentationInformation{ public String getIndentString() { - return " "; + return "\t"; } } }