Skip to content

Commit c2b78be

Browse files
author
Vladimir Kotal
committed
reorder methods
1 parent b5521af commit c2b78be

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

opengrok-web/src/main/java/org/opengrok/web/WebappListener.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ public void contextDestroyed(final ServletContextEvent servletContextEvent) {
125125
SuggesterServiceFactory.getDefault().close();
126126
}
127127

128+
/**
129+
* {@inheritDoc}
130+
*/
131+
@Override
132+
public void requestInitialized(ServletRequestEvent e) {
133+
e.getServletRequest().setAttribute(TIMER_ATTR_NAME, Instant.now());
134+
}
135+
128136
/**
129137
* {@inheritDoc}
130138
*/
@@ -144,12 +152,4 @@ public void requestDestroyed(ServletRequestEvent e) {
144152

145153
AnalyzerGuru.returnAnalyzers();
146154
}
147-
148-
/**
149-
* {@inheritDoc}
150-
*/
151-
@Override
152-
public void requestInitialized(ServletRequestEvent e) {
153-
e.getServletRequest().setAttribute(TIMER_ATTR_NAME, Instant.now());
154-
}
155155
}

0 commit comments

Comments
 (0)