Very minor move

This commit is contained in:
Bradlee Speice 2014-04-29 23:28:45 -04:00
parent 09e0572612
commit 4cf8b8d129

View File

@ -23,7 +23,6 @@ public class DownloadManager {
public static DownloadManager getInstance() {
if (instance == null) {
instance = new DownloadManager();
instance.downloadEvents();
}
return instance;
}
@ -31,6 +30,7 @@ public class DownloadManager {
private DownloadManager() {
setDownloadDir();
downloadBus = new EventBus();
downloadEvents();
}
public Map<String, Installer> getInstallers() {