Skip to content

Commit 324ac29

Browse files
Fix code formatting.
1 parent ed502d2 commit 324ac29

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

taskmaster-cache-helper/src/main/java/com/github/bordertech/taskmaster/cache/servlet/CachingProviderListener.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
*/
1111
public class CachingProviderListener implements ServletContextListener {
1212

13-
@Override
14-
public void contextInitialized(final ServletContextEvent sce) {
15-
// Do nothing
16-
}
13+
@Override
14+
public void contextInitialized(final ServletContextEvent sce) {
15+
// Do nothing
16+
}
1717

18-
@Override
19-
public void contextDestroyed(final ServletContextEvent sce) {
20-
CachingProvider provider = Caching.getCachingProvider();
21-
if (provider != null && !provider.getCacheManager().isClosed()) {
22-
provider.getCacheManager().close();
23-
}
24-
}
18+
@Override
19+
public void contextDestroyed(final ServletContextEvent sce) {
20+
CachingProvider provider = Caching.getCachingProvider();
21+
if (provider != null && !provider.getCacheManager().isClosed()) {
22+
provider.getCacheManager().close();
23+
}
24+
}
2525

2626
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Task Master Cache Servlet Helpers.
3+
*/
4+
package com.github.bordertech.taskmaster.cache.servlet;

0 commit comments

Comments
 (0)