Rename pimstuff -> jpim and move to Maven
[jpim.git] / src / de / j32 / httplib / HttpResponse.java
diff --git a/src/de/j32/httplib/HttpResponse.java b/src/de/j32/httplib/HttpResponse.java
deleted file mode 100644 (file)
index b1dfb77..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package de.j32.httplib;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.net.HttpURLConnection;
-
-public class HttpResponse extends InputStream
-{
-    HttpURLConnection connection_;
-    InputStream stream_;
-
-    public HttpResponse(HttpURLConnection connection) throws IOException
-    {
-        connection_ = connection;
-        stream_ = connection_.getInputStream();
-    }
-
-    @Override
-    public int read() throws IOException
-    {
-        return stream_.read();
-    }
-
-    @Override
-    public void close() throws IOException
-    {
-        stream_.close();
-    }
-
-}