eclipse plugin: Remove the prefixing tabs also when cleaning the node text

This commit is contained in:
Timotei Dolean 2012-02-15 21:56:59 +00:00
parent 4b21c2002f
commit 30cbc9a362

View File

@ -206,6 +206,6 @@ public class WMLUtils
private static String toCleanedUpText( EObject obj )
{
return NodeModelUtils.getNode( obj ).getText( )
.replaceFirst( "(\\n|\\r| )+", "" );
.replaceFirst( "(\\n|\\r|\\t| )+", "" );
}
}