mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
make trial from release
This commit is contained in:
parent
d1b05c7411
commit
ce3bed6ec9
@ -33,7 +33,7 @@ namespace Twiglet.CS2J.Translator
|
||||
{
|
||||
class CS2J
|
||||
{
|
||||
private const string VERSION = "2011.3.1";
|
||||
private const string VERSION = "2011.3.1trial";
|
||||
private static DirectoryHT<TypeRepTemplate> AppEnv { get; set; }
|
||||
private static CS2JSettings cfg = new CS2JSettings();
|
||||
private static StringTemplateGroup templates = null;
|
||||
@ -541,7 +541,7 @@ namespace Twiglet.CS2J.Translator
|
||||
// Suck in translation file
|
||||
Stream txStream = new FileStream(fullName, FileMode.Open, FileAccess.Read);
|
||||
|
||||
if (numLines < numLines - 1)
|
||||
if (numLines < numLines + 1)
|
||||
{
|
||||
// TRIAL ONLY
|
||||
// Create a new XML document.
|
||||
@ -612,7 +612,7 @@ namespace Twiglet.CS2J.Translator
|
||||
}
|
||||
|
||||
private static string limit(string inp) {
|
||||
if (numLines > numLines - 1)
|
||||
if (numLines > numLines + 1)
|
||||
return inp;
|
||||
// TRIAL ONLY
|
||||
String[] lines = inp.Split(newLines, numLines+1, StringSplitOptions.None);
|
||||
|
@ -15,6 +15,12 @@ namespace Twiglet.CS2J.Translator
|
||||
group JavaPrettyPrintTemplates;
|
||||
|
||||
itsmine(now, includeDate) ::= <<
|
||||
//
|
||||
// This code is to be used for evaluation of the CS2J tool ONLY.
|
||||
//
|
||||
// This file was translated from C# to Java by CS2J (http://www.cs2j.com).
|
||||
//
|
||||
// For more information about CS2J please contact info@twigletsoftware.com
|
||||
<if(includeDate)>
|
||||
//
|
||||
// Translated by CS2J (http://www.cs2j.com): <now><\n>
|
||||
|
Loading…
x
Reference in New Issue
Block a user