mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-13 11:41:34 +01:00
Moved static future nullification to proper finally block
This commit is contained in:
parent
1ef1910abb
commit
4dba49f241
@ -41,7 +41,7 @@ public class Analysis implements Callable<AnalysisData> {
|
||||
private final DataCache dataCache;
|
||||
|
||||
private static Future<AnalysisData> future;
|
||||
|
||||
|
||||
private boolean analysingThisServer;
|
||||
|
||||
private Analysis(UUID serverUUID, Database database, DataCache dataCache) {
|
||||
@ -56,8 +56,12 @@ public class Analysis implements Callable<AnalysisData> {
|
||||
}
|
||||
|
||||
public static AnalysisData runAnalysisFor(UUID serverUUID, Database database, DataCache dataCache) throws Exception {
|
||||
future = future != null ? future : Processing.submit(new Analysis(serverUUID, database, dataCache));
|
||||
return future.get();
|
||||
try {
|
||||
future = future != null ? future : Processing.submit(new Analysis(serverUUID, database, dataCache));
|
||||
return future.get();
|
||||
} finally {
|
||||
future = null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -198,7 +202,6 @@ public class Analysis implements Callable<AnalysisData> {
|
||||
Log.logDebug("Analysis");
|
||||
Log.info(Locale.get(Msg.ANALYSIS_FINISHED).parse(time, ""));
|
||||
Analysis.setServerProfile(null);
|
||||
future = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user