Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier committed Nov 25, 2024
1 parent 5f87aeb commit 55d7b9d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions csharp/test/Ice/background/Transceiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,8 @@ public string protocol()
return "test-" + _transceiver.protocol();
}

public Ice.ConnectionInfo getInfo(bool incoming, string connectionId, string adapterName)
{
return _transceiver.getInfo(incoming, connectionId, adapterName);
}
public Ice.ConnectionInfo getInfo(bool incoming, string connectionId, string adapterName) =>
_transceiver.getInfo(incoming, connectionId, adapterName);

public override string ToString()
{
Expand Down

0 comments on commit 55d7b9d

Please sign in to comment.