Renamed HttpWebserverClient to HttpClient

This commit is contained in:
Trustin Lee 2008-11-26 08:40:04 +00:00
parent be88a53b3b
commit 2b0ee3862f

View File

@ -41,12 +41,12 @@ import org.jboss.netty.handler.codec.http.HttpVersion;
* @author Andy Taylor (andy.taylor@jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*/
public class HttpWebserverClient {
public class HttpClient {
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.err.println(
"Usage: " + HttpWebserverClient.class.getSimpleName() +
"Usage: " + HttpClient.class.getSimpleName() +
" <URL>");
return;
}