Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / httplib / HttpGETRequest.java
index 3929df6..53b8f56 100644 (file)
@@ -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;
+    }
 
 }