Skip to content

Commit

Permalink
removing an unintended output file
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Rodriguez Doncel committed Jul 10, 2015
1 parent b85b975 commit 6b5efd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/java/pgn2rdf/servlets/ServiceServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ protected void processRequest(HttpServletRequest request, HttpServletResponse re
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
String uri = request.getRequestURI();
PrintWriter archivo = new PrintWriter("d:\\test.txt");
archivo.println(uri+request.getParameter("current"));
archivo.close();
// PrintWriter archivo = new PrintWriter("d:\\test.txt");
// archivo.println(uri+request.getParameter("current"));
// archivo.close();
if (uri.equals("/rdfchess/service/getChessplayers")) {
//current=1&rowCount=10&sort[sender]=asc&searchPhrase=&id=b0df282a-0d67-40e5-8558-c9e93b7befed
String offset = request.getParameter("current");
Expand Down

0 comments on commit 6b5efd3

Please sign in to comment.