Skip to content

Commit

Permalink
Fix bad overloaded constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
corytodd committed Sep 19, 2015
1 parent 87e2dee commit 43528a9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Apex7000_BillValidator/RS232Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ public class RS232Config
/// </summary>
/// <seealso cref="RS232Config.IsEscrowMode"/>
/// <param name="commPort">String port name e.g. COM4</param>
public RS232Config(string commPort)
{
new RS232Config(commPort.ToString(), false);
}
public RS232Config(string commPort) : this(commPort.ToString(), false)
{ }

/// <summary>
/// Create a new configuration to use for the Apex7000 validator class.
Expand Down

0 comments on commit 43528a9

Please sign in to comment.