[xtext] Setting default indentation to TAB (fixing tests)

This commit is contained in:
Jan Koehnlein 2011-11-16 10:32:45 +01:00
parent e5d19a63e8
commit c5fa4dd22b

View file

@ -24,7 +24,7 @@ public interface IIndentationInformation {
*/
class Default implements IIndentationInformation{
public String getIndentString() {
return " ";
return "\t";
}
}
}