From 0db2a25add15249544e966dda90a326ea451de4c Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 29 Aug 2018 12:01:32 -0700 Subject: [PATCH] Format source code. --- .../EnableGemFireHttpSessionEventsIntegrationTests.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/config/annotation/web/http/EnableGemFireHttpSessionEventsIntegrationTests.java b/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/config/annotation/web/http/EnableGemFireHttpSessionEventsIntegrationTests.java index 79c6e58..d32cef5 100644 --- a/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/config/annotation/web/http/EnableGemFireHttpSessionEventsIntegrationTests.java +++ b/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/config/annotation/web/http/EnableGemFireHttpSessionEventsIntegrationTests.java @@ -73,6 +73,7 @@ import org.springframework.test.context.web.WebAppConfiguration; @ContextConfiguration @DirtiesContext @WebAppConfiguration +@SuppressWarnings("unused") public class EnableGemFireHttpSessionEventsIntegrationTests extends AbstractGemFireIntegrationTests { private static final int MAX_INACTIVE_INTERVAL_IN_SECONDS = 1; @@ -230,9 +231,11 @@ public class EnableGemFireHttpSessionEventsIntegrationTests extends AbstractGemF } @PeerCacheApplication(name = "EnableGemFireHttpSessionEventsIntegrationTests", logLevel = GEMFIRE_LOG_LEVEL) - @EnableGemFireHttpSession(regionName = SPRING_SESSION_DATA_GEMFIRE_REGION_NAME, + @EnableGemFireHttpSession( + regionName = SPRING_SESSION_DATA_GEMFIRE_REGION_NAME, maxInactiveIntervalInSeconds = MAX_INACTIVE_INTERVAL_IN_SECONDS, - serverRegionShortcut = RegionShortcut.REPLICATE) + serverRegionShortcut = RegionShortcut.REPLICATE + ) @SuppressWarnings("unused") static class SpringSessionGemFireConfiguration {