* BindStreamWriter.cs: Fixed workaround for indentation on Linux (indentation seems to be applied twice).

This commit is contained in:
the_fiddler 2009-08-12 08:33:49 +00:00
parent 9c0a472ba7
commit 6f57ac0f6d

View file

@ -57,9 +57,9 @@ namespace Bind
{
for (int i = indent_level; i > 0; i--)
base.Write(" ");
base.WriteLine(value);
}
base.WriteLine(value);
}
public void Write(Bind.Structures.Enum e)