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

Make trial version from master branch

This commit is contained in:
Kevin Glynn 2011-03-27 14:44:47 +02:00
parent 2bdf214671
commit fb15bd3abf

View File

@ -348,7 +348,7 @@ namespace Twiglet.CS2J.Translator
// Suck in translation file // Suck in translation file
Stream txStream = new FileStream(fullName, FileMode.Open, FileAccess.Read); Stream txStream = new FileStream(fullName, FileMode.Open, FileAccess.Read);
if (numLines < numLines - 1) if (numLines < numLines + 1)
{ {
// TRIAL ONLY // TRIAL ONLY
// Create a new XML document. // Create a new XML document.
@ -407,7 +407,7 @@ namespace Twiglet.CS2J.Translator
} }
private static string limit(string inp) { private static string limit(string inp) {
if (numLines > numLines - 1) if (numLines > numLines + 1)
return inp; return inp;
// TRIAL ONLY // TRIAL ONLY
String[] lines = inp.Split(newLines, numLines+1, StringSplitOptions.None); String[] lines = inp.Split(newLines, numLines+1, StringSplitOptions.None);