Refactored class name.

This commit is contained in:
Simone Bordet 2012-02-14 17:41:39 +01:00
parent ff7414c893
commit c191304433
1 changed files with 3 additions and 3 deletions

View File

@ -193,7 +193,7 @@ public class SPDYClient
selector = new ClientSelectorManager();
addBean(selector);
factories.put("spdy/2", new ClientSPDY2AsyncConnectionFactory());
factories.put("spdy/2", new ClientSPDYAsyncConnectionFactory());
}
public SPDYClient newSPDYClient()
@ -306,7 +306,7 @@ public class SPDYClient
}
else
{
AsyncConnectionFactory connectionFactory = new ClientSPDY2AsyncConnectionFactory();
AsyncConnectionFactory connectionFactory = new ClientSPDYAsyncConnectionFactory();
AsyncConnection connection = connectionFactory.newAsyncConnection(channel, endPoint, attachment);
endPoint.setConnection(connection);
return connection;
@ -408,7 +408,7 @@ public class SPDYClient
}
}
private static class ClientSPDY2AsyncConnectionFactory implements AsyncConnectionFactory
private static class ClientSPDYAsyncConnectionFactory implements AsyncConnectionFactory
{
@Override
public AsyncConnection newAsyncConnection(SocketChannel channel, AsyncEndPoint endPoint, Object attachment)