Skip to content

Commit 697d41f

Browse files
committed
Deleting redundant logging to console in tests
1 parent ce9a372 commit 697d41f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

java/client/test/org/openqa/selenium/environment/webserver/CookieServlet.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ protected void doGet(HttpServletRequest request, HttpServletResponse response)
8585

8686
} else if ("deleteAll".equals(action)) {
8787
for (Cookie cookie : request.getCookies()) {
88-
System.out.println(cookie);
8988
cookie.setValue("");
9089
cookie.setPath("/");
9190
cookie.setMaxAge(0);

0 commit comments

Comments
 (0)