X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=src%2Fde%2Fj32%2Fhttplib%2FHttpGETRequest.java;h=53b8f566f7d90f0b87f23ecd7f139054600f45a5;hb=e4126a1787b7045a53f6074e9ef15681c9f5fde4;hp=3929df6aa6014c4a8d1953ffb8aa398cd5a9d8aa;hpb=276d9a69fa796728169c2992921a1e4bd875f549;p=jpim.git diff --git a/src/de/j32/httplib/HttpGETRequest.java b/src/de/j32/httplib/HttpGETRequest.java index 3929df6..53b8f56 100644 --- a/src/de/j32/httplib/HttpGETRequest.java +++ b/src/de/j32/httplib/HttpGETRequest.java @@ -1,18 +1,18 @@ package de.j32.httplib; -public class HttpGETRequest - extends HttpRequest +public class HttpGETRequest extends HttpRequest { - public HttpGETRequest(String url) - { - super(url,"GET"); - } + public HttpGETRequest(String url) + { + super(url, "GET"); + } - @Override - public HttpGETRequest addParameter(String name, byte[] value, String encoding) - { - appendParameter(query(), query().length() == 0, name, value); - return this; - } + @Override + public HttpGETRequest addParameter(String name, byte[] value, + String encoding) + { + appendParameter(query(), query().length() == 0, name, value); + return this; + } }