We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f9c69e commit c98a7beCopy full SHA for c98a7be
spring-session-core/src/main/java/org/springframework/session/web/http/HeaderHttpSessionIdResolver.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2014-2019 the original author or authors.
+ * Copyright 2014-2022 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -98,7 +98,6 @@ public HeaderHttpSessionIdResolver(String headerName) {
98
@Override
99
public List<String> resolveSessionIds(HttpServletRequest request) {
100
String headerValue = request.getHeader(this.headerName);
101
- System.out.println(headerValue);
102
return (headerValue != null) ? Collections.singletonList(headerValue) : Collections.emptyList();
103
}
104
0 commit comments