Skip to content

Commit

Permalink
fix typo in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
wg authored and trustin committed Apr 18, 2011
1 parent 98db0d3 commit e00e9bb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -182,7 +182,7 @@ public ChannelFuture connect() {
*/
public ChannelFuture connect(SocketAddress remoteAddress) {
if (remoteAddress == null) {
throw new NullPointerException("remotedAddress");
throw new NullPointerException("remoteAddress");
}
SocketAddress localAddress = (SocketAddress) getOption("localAddress");
return connect(remoteAddress, localAddress);
Expand Down

0 comments on commit e00e9bb

Please sign in to comment.