Skip to content

Commit ab7a5a3

Browse files
committed
Checkstyle
1 parent 3499741 commit ab7a5a3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pax-cdi-undertow-openwebbeans/src/main/java/org/ops4j/pax/cdi/undertow/openwebbeans/impl/OpenWebBeansListener.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ public void requestInitialized(ServletRequestEvent event) {
9797
// we don't initialise the Session here but do it lazily if it gets requested
9898
// the first time. See OWB-457
9999
}
100+
// CHECKSTYLE:SKIP
100101
catch (Exception e) {
101102
log.error(WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0019,
102103
event == null ? "null" : event.getServletRequest()));
@@ -111,6 +112,7 @@ public void sessionCreated(HttpSessionEvent event) {
111112
this.lifecycle.getContextService()
112113
.startContext(SessionScoped.class, event.getSession());
113114
}
115+
// CHECKSTYLE:SKIP
114116
catch (Exception e) {
115117
log.error(WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0020,
116118
event.getSession()));

pax-cdi-web-openwebbeans/src/main/java/org/ops4j/pax/cdi/web/openwebbeans/impl/OpenWebBeansListener.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public void requestInitialized(ServletRequestEvent event) {
8484
// we don't initialise the Session here but do it lazily if it gets requested
8585
// the first time. See OWB-457
8686
}
87+
// CHECKSTYLE:SKIP
8788
catch (Exception e) {
8889
log.error(WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0019,
8990
event == null ? "null" : event.getServletRequest()));
@@ -98,6 +99,7 @@ public void sessionCreated(HttpSessionEvent event) {
9899
this.lifecycle.getContextService()
99100
.startContext(SessionScoped.class, event.getSession());
100101
}
102+
// CHECKSTYLE:SKIP
101103
catch (Exception e) {
102104
log.error(WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0020,
103105
event.getSession()));

0 commit comments

Comments
 (0)