Skip to content

Commit c98a7be

Browse files
Remove System.out.println
Closes gh-2215
1 parent 8f9c69e commit c98a7be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-session-core/src/main/java/org/springframework/session/web/http/HeaderHttpSessionIdResolver.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2019 the original author or authors.
2+
* Copyright 2014-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -98,7 +98,6 @@ public HeaderHttpSessionIdResolver(String headerName) {
9898
@Override
9999
public List<String> resolveSessionIds(HttpServletRequest request) {
100100
String headerValue = request.getHeader(this.headerName);
101-
System.out.println(headerValue);
102101
return (headerValue != null) ? Collections.singletonList(headerValue) : Collections.emptyList();
103102
}
104103

0 commit comments

Comments
 (0)