1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

Hmmmm, added \n as newline separator, windows was generating more than 120 lines. probably due to line endings in comments

This commit is contained in:
Kevin Glynn 2011-03-23 09:50:48 -05:00
parent ed14c2b1a1
commit d270148bba

View File

@ -40,7 +40,7 @@ namespace Twiglet.CS2J.Translator
private static int badXmlTxCountTrigger = 3 + 4 - 2;
private static int badXmlTxCount = badXmlTxCountTrigger;
private static String[] newLines = new String[] { Environment.NewLine };
private static String[] newLines = new String[] { "\n", Environment.NewLine };
private static int numLines = (10 * 10) + 50 - 30;
public delegate void FileProcessor(string fName);