Skip to content

Commit

Permalink
Removed leftover System.err from tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Jan 7, 2024
1 parent 62e073c commit 356f400
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ public void testPushedResourceRedirect(Transport transport) throws Exception
protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException
{
String target = request.getRequestURI();
System.err.println("SIMON: target = " + target);
if (target.equals(oldPath))
response.sendRedirect(newPath);
else if (target.equals(newPath))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ public void testPushedResourceRedirect(Transport transport) throws Exception
protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException
{
String target = request.getRequestURI();
System.err.println("SIMON: target = " + target);
if (target.equals(oldPath))
response.sendRedirect(newPath);
else if (target.equals(newPath))
Expand Down

0 comments on commit 356f400

Please sign in to comment.