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

This commit is contained in:
Jan Koehnlein 2011-11-16 10:32:45 +01:00 committed by Dennis Huebner
parent e5d19a63e8
commit ab5241b225

View file

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