* 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 81b06b8a08
commit 04e8dc3472

View file

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