Polishing

This commit is contained in:
Juergen Hoeller
2017-09-19 00:02:40 +02:00
parent 0f42f38336
commit 3bd2154046
2 changed files with 5 additions and 6 deletions

View File

@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.server.session;
import java.time.Clock;
@@ -57,7 +58,7 @@ public class InMemoryWebSessionStore implements WebSessionStore {
* @param clock the clock to use
*/
public void setClock(Clock clock) {
Assert.notNull(clock, "'clock' is required.");
Assert.notNull(clock, "Clock is required");
this.clock = clock;
}
@@ -93,7 +94,8 @@ public class InMemoryWebSessionStore implements WebSessionStore {
});
}
/* Private methods for InMemoryWebSession */
// Private methods for InMemoryWebSession
private Mono<Void> changeSessionId(String oldId, WebSession session) {
this.sessions.remove(oldId);
@@ -121,7 +123,6 @@ public class InMemoryWebSessionStore implements WebSessionStore {
private volatile boolean started;
InMemoryWebSession() {
this.id = new AtomicReference<>(String.valueOf(idGenerator.generateId()));
this.attributes = new ConcurrentHashMap<>();
@@ -139,7 +140,6 @@ public class InMemoryWebSessionStore implements WebSessionStore {
this.started = existingSession.isStarted(); // Use method (explicit or implicit start)
}
@Override
public String getId() {
return this.id.get();
@@ -170,7 +170,6 @@ public class InMemoryWebSessionStore implements WebSessionStore {
return this.maxIdleTime;
}
@Override
public void start() {
this.started = true;