Skip to content

Commit

Permalink
Remove 'sealed' tag from sasltransport and sasltransportprovider (Azu…
Browse files Browse the repository at this point in the history
…re#119)

* Update SaslTransport.cs

Remove 'sealed' tag. Also make 'innerTransport' accessible to derived classes.

* Update SaslTransportProvider.cs

remove 'sealed' tag from SaslTransportProvider.
  • Loading branch information
rajeevmv authored and xinchen10 committed Sep 4, 2018
1 parent 8629bbd commit 48e0e4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Microsoft.Azure.Amqp/Amqp/Sasl/SaslTransport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ namespace Microsoft.Azure.Amqp.Sasl
using System.Security.Principal;
using Microsoft.Azure.Amqp.Transport;

public sealed class SaslTransport : TransportBase
public class SaslTransport : TransportBase
{
readonly TransportBase innerTransport;
protected readonly TransportBase innerTransport;
SaslNegotiator negotiator;

public SaslTransport(TransportBase transport, SaslTransportProvider provider, bool isInitiator)
Expand Down
2 changes: 1 addition & 1 deletion Microsoft.Azure.Amqp/Amqp/Sasl/SaslTransportProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Azure.Amqp.Sasl
using System.Collections.Generic;
using Microsoft.Azure.Amqp.Transport;

public sealed class SaslTransportProvider : TransportProvider
public class SaslTransportProvider : TransportProvider
{
Dictionary<string, SaslHandler> handlers;

Expand Down

0 comments on commit 48e0e4a

Please sign in to comment.