Issue #2139 Revert "Issue #2139 Run async job for loading maps in warngen."

This reverts commit b046ea220c79e69eec32fa15fca28a84b3cf419c [formerly e4c0188c14] [formerly 2d4a32ca64 [formerly ab8acf06e1] [formerly 81aad09d06] [formerly e4c0188c14 [formerly 81aad09d06 [formerly 084e506395a937030f7cee0cdb6f3322948d2b22]]]].


Former-commit-id: 772bf31dd0 [formerly 70ab67c3e5] [formerly c883b4e636] [formerly 7f74926bb4 [formerly c883b4e636 [formerly 765b5eea21f10ad1607aa99acb478eebf283e988]]]
Former-commit-id: 7f74926bb4
Former-commit-id: 112930e6b78a31053cde5b486cd3ccabf8fe7fbb [formerly 41e94abee3]
Former-commit-id: fa0887429d
This commit is contained in:
Jonathan Sanchez 2013-07-01 10:40:48 -05:00
parent 0da7509e6d
commit 5794a0bc3f
2 changed files with 2 additions and 18 deletions

View file

@ -27,5 +27,4 @@ Bundle-ActivationPolicy: lazy
Bundle-ClassPath: .
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.raytheon.viz.ui.personalities.awips
Import-Package: com.raytheon.uf.common.pypies,
com.raytheon.uf.viz.core.maps
Import-Package: com.raytheon.uf.common.pypies

View file

@ -19,13 +19,6 @@
**/
package com.raytheon.viz.ui.personalities.awips;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import com.raytheon.uf.viz.core.maps.MapStore;
/**
* TODO Add Description
*
@ -35,7 +28,6 @@ import com.raytheon.uf.viz.core.maps.MapStore;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Aug 9, 2010 mschenke Initial creation
* Jun 25, 2013 2139 jsanchez Loaded the map tree on CAVE start up.
*
* </pre>
*
@ -58,14 +50,7 @@ public class CAVE extends AbstractCAVEComponent {
*/
@Override
protected void startInternal(String componentName) throws Exception {
Job job = new Job("Loading Map Tree") {
@Override
protected IStatus run(IProgressMonitor monitor) {
MapStore.getMapTree();
return Status.OK_STATUS;
}
};
job.schedule();
}
}