in src/main/java/org/apache/sling/reqanalyzer/impl/RequestAnalysisLogger.java [86:101]
private void deactivate() throws IOException {
if (this.webConsolePlugin != null) {
this.webConsolePlugin.unregister();
this.webConsolePlugin = null;
}
if (this.requestAnalyzerWebConsole != null) {
this.requestAnalyzerWebConsole.dispose();
this.requestAnalyzerWebConsole = null;
}
if (this.logFile != null) {
this.logFile.close();
this.logFile = null;
}
}