Skip to content

Commit 05c17b5

Browse files
author
Elad Zelingher
committed
Remove redundant address
1 parent e865a01 commit 05c17b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WampSharp.Default/WampChannelFactoryExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static IWampChannel<TMessage> CreateChannel<TMessage>(this IWampChannelFa
1919
return factory.CreateChannel(new WebSocket4NetConnection<TMessage>(address, parser));
2020
}
2121

22-
public static IWampChannel<JToken> CreateChannel(this IWampChannelFactory<JToken> factory, string address,
22+
public static IWampChannel<JToken> CreateChannel(this IWampChannelFactory<JToken> factory,
2323
WebSocket socket)
2424
{
2525
return factory.CreateChannel(new WebSocket4NetConnection<JToken>(socket, new JTokenMessageParser()));

0 commit comments

Comments
 (0)