Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12695


Ignore:
Timestamp:
07/09/15 15:40:24 (9 years ago)
Author:
jkarder
Message:

#2424: fixed typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScriptBase.cs

    r12012 r12695  
    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.