Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12726


Ignore:
Timestamp:
07/11/15 13:41:08 (9 years ago)
Author:
ascheibe
Message:

#2424 merged r12695 into stable

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScriptBase.cs

    r12009 r12726  
    7777      public override void Write(string value) { script.OnConsoleOutputChanged(value); }
    7878      public override void Write(string format, object arg0) { script.OnConsoleOutputChanged(string.Format(format, arg0)); }
    79       public override void Write(string format, object arg0, object arg1) { script.OnConsoleOutputChanged(string.Format(format, arg0, arg0)); }
     79      public override void Write(string format, object arg0, object arg1) { script.OnConsoleOutputChanged(string.Format(format, arg0, arg1)); }
    8080      public override void Write(string format, object arg0, object arg1, object arg2) { script.OnConsoleOutputChanged(string.Format(format, arg0, arg1, arg2)); }
    8181      public override void Write(string format, params object[] arg) { script.OnConsoleOutputChanged(string.Format(format, arg)); }
Note: See TracChangeset for help on using the changeset viewer.