Skip to content

Commit

Permalink
Merge pull request twiglet#1 from RusticiSoftware/bsc-postprocess
Browse files Browse the repository at this point in the history
Added postprocessor to allow embedding Java in C# comments
  • Loading branch information
ingramj committed Apr 7, 2015
2 parents f903836 + ad9828e commit 6204f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSharpTranslator/src/CS2JTranslator/CS2JMain/CS2JMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ public static void translateFile(string fullName)
{
if (cfg.DebugLevel >= 1) Console.Out.WriteLine("Writing out {0}", javaFName);
StreamWriter javaW = new StreamWriter(javaFName);
javaW.Write(outputMaker.compilation_unit().ToString());
javaW.Write(outputMaker.compilation_unit().ToString().Replace("//CS2J:Java code:", ""));
javaW.Close();
}
else
Expand Down

0 comments on commit 6204f3e

Please sign in to comment.