Skip to content

Commit

Permalink
corrected parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
elendil-software committed Feb 6, 2019
1 parent 937f213 commit 5ef7681
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions IPX800cs/Parsers/v2/IPX800v2ResponseParserFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public IInputResponseParser GetInputParser(Context context, Input input)
}
}

public IGetOutputResponseParser GetOutputParser(Context context, Output input)
public IGetOutputResponseParser GetOutputParser(Context context, Output output)
{
switch (context.Protocol)
{
Expand All @@ -67,7 +67,7 @@ public IGetOutputResponseParser GetOutputParser(Context context, Output input)
}
}

public ISetOutputResponseParser GetSetOutputParser(Context context, Output input)
public ISetOutputResponseParser GetSetOutputParser(Context context, Output output)
{
switch (context.Protocol)
{
Expand Down
4 changes: 2 additions & 2 deletions IPX800cs/Parsers/v3/IPX800v3ResponseParserFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public IInputResponseParser GetInputParser(Context context, Input input)
}
}

public IGetOutputResponseParser GetOutputParser(Context context, Output input)
public IGetOutputResponseParser GetOutputParser(Context context, Output output)
{
switch (context.Protocol)
{
Expand All @@ -97,7 +97,7 @@ public IGetOutputResponseParser GetOutputParser(Context context, Output input)
}
}

public ISetOutputResponseParser GetSetOutputParser(Context context, Output input)
public ISetOutputResponseParser GetSetOutputParser(Context context, Output output)
{
switch (context.Protocol)
{
Expand Down

0 comments on commit 5ef7681

Please sign in to comment.