Skip to content

Commit c0b0669

Browse files
author
Steve Cody
committed
removing println
1 parent 5a88ac1 commit c0b0669

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

src/main/java/od/added/AuthController.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ public class AuthController {
9797
@CrossOrigin
9898
@RequestMapping(value = "/login", method = RequestMethod.GET, produces = "application/json;charset=utf-8")
9999
public String login(HttpServletResponse response, HttpServletRequest request, Authentication authentication) {// ,
100-
101-
System.out.println("****************** Now we are inside the login auth controller");
102100

103101
// @RequestParam("user") String user, @RequestParam("pass") String pass)
104102

src/main/java/od/auth/JwtRequestFilter.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,12 @@ public class JwtRequestFilter extends OncePerRequestFilter {
3737
@Override
3838
protected boolean shouldNotFilter(HttpServletRequest request) {
3939
String path = request.getServletPath();
40-
System.out.println("*******************Inside of Should Not Filter");
41-
System.out.println("******************* Path: " + path);
4240
return (path.startsWith("/lti") || path.contains("login"));
4341
}
4442

4543
@Override
4644
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
4745
throws ServletException, IOException {
48-
49-
50-
System.out.println("------------------------Inside of do Filter");
51-
System.out.println("------------------------Path: " + request.getServletPath());
5246

5347
// get token from a Cookie
5448
Cookie[] cookies = request.getCookies();

0 commit comments

Comments
 (0)