Skip to content

Commit

Permalink
Make Stream Constructor public
Browse files Browse the repository at this point in the history
  • Loading branch information
burdoto committed Oct 10, 2019
1 parent 8b14aa5 commit 8030680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vban/Facade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static VBANStream<string> OpenTextStream(IPAddress ipAddress, int? port)
// ReSharper disable once InconsistentNaming
public class VBANStream<T> : IOStream
{
internal VBANStream(Factory packetFactory, IPAddress ipAddress, int? port)
public VBANStream(Factory packetFactory, IPAddress ipAddress, int? port)
: base(false, true, false, false, null, null)
{
Closed = false;
Expand Down

0 comments on commit 8030680

Please sign in to comment.