summaryrefslogtreecommitdiff
path: root/src/lq/ViewQuotes.java
diff options
context:
space:
mode:
authorKjetil Ørbekk <orbekk@pvv.ntnu.no>2010-09-04 04:20:31 -0400
committerKjetil Ørbekk <orbekk@pvv.ntnu.no>2010-09-04 04:20:31 -0400
commitf9dbce935a68d4b8a43e0ff7ddedebd6329de155 (patch)
tree9c0d8ef96729227c0066ae899e62fa88f3fbd9c6 /src/lq/ViewQuotes.java
parent5ae25cd60e5b8a939166b1f9a55b445b1cb2a7ea (diff)
Code cleanup.
Remove unused servlets. Remove unused imports.
Diffstat (limited to 'src/lq/ViewQuotes.java')
-rw-r--r--src/lq/ViewQuotes.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lq/ViewQuotes.java b/src/lq/ViewQuotes.java
deleted file mode 100644
index cc03f51..0000000
--- a/src/lq/ViewQuotes.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package lq;
-
-import java.io.IOException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-public class ViewQuotes extends HttpServlet {
- public void doGet(HttpServletRequest req, HttpServletResponse resp)
- throws IOException {
- resp.setContentType("text/plain");
- resp.getWriter().println("Hello, World!");
- }
-}