diff --git a/edexOsgi/com.raytheon.uf.common.plugin.hpe/META-INF/MANIFEST.MF b/edexOsgi/com.raytheon.uf.common.plugin.hpe/META-INF/MANIFEST.MF index 980394b25f..7bc00c1a3c 100644 --- a/edexOsgi/com.raytheon.uf.common.plugin.hpe/META-INF/MANIFEST.MF +++ b/edexOsgi/com.raytheon.uf.common.plugin.hpe/META-INF/MANIFEST.MF @@ -4,8 +4,7 @@ Bundle-Name: Hpe Bundle-SymbolicName: com.raytheon.uf.common.plugin.hpe Bundle-Version: 1.14.3.qualifier Bundle-Vendor: RAYTHEON -Require-Bundle: org.eclipse.core.runtime, - com.raytheon.uf.common.util;bundle-version="1.14.0", +Require-Bundle: com.raytheon.uf.common.util;bundle-version="1.14.0", com.raytheon.uf.common.status;bundle-version="1.12.1174", com.raytheon.uf.common.time;bundle-version="1.12.1174", javax.persistence;bundle-version="1.0.0", diff --git a/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/META-INF/MANIFEST.MF b/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/META-INF/MANIFEST.MF index 33f8d3774a..36c80904b0 100644 --- a/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/META-INF/MANIFEST.MF +++ b/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/META-INF/MANIFEST.MF @@ -16,8 +16,6 @@ Require-Bundle: org.geotools;bundle-version="2.6.4", com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0", com.raytheon.uf.common.localization;bundle-version="1.12.1174", com.raytheon.uf.edex.cpgsrv;bundle-version="1.12.1174", - org.eclipse.ui;bundle-version="3.6.1", - org.eclipse.core.runtime;bundle-version="3.6.0", com.raytheon.uf.common.monitor;bundle-version="1.12.1174", com.raytheon.edex.plugin.radar, com.raytheon.uf.common.ohd;bundle-version="1.12.1174", diff --git a/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/src/gov/noaa/nws/ohd/edex/plugin/hydrodualpol/DAAProductProcessor.java b/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/src/gov/noaa/nws/ohd/edex/plugin/hydrodualpol/DAAProductProcessor.java index 11a59e9b6a..984a633609 100644 --- a/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/src/gov/noaa/nws/ohd/edex/plugin/hydrodualpol/DAAProductProcessor.java +++ b/ohd/gov.noaa.nws.ohd.edex.plugin.hydrodualpol/src/gov/noaa/nws/ohd/edex/plugin/hydrodualpol/DAAProductProcessor.java @@ -2,19 +2,13 @@ package gov.noaa.nws.ohd.edex.plugin.hydrodualpol; import java.io.DataOutputStream; import java.io.File; -import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintWriter; -import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; -import java.util.TimeZone; -import org.eclipse.jface.viewers.deferred.SetModel; - -import com.raytheon.uf.common.dataplugin.persist.PersistableDataObject; import com.raytheon.uf.common.dataplugin.radar.RadarRecord; import com.raytheon.uf.common.dataplugin.radar.level3.Layer; import com.raytheon.uf.common.dataplugin.radar.level3.SymbologyBlock; @@ -22,11 +16,9 @@ import com.raytheon.uf.common.dataplugin.radar.level3.SymbologyPacket; import com.raytheon.uf.common.dataplugin.radar.level3.TextSymbolPacket; import com.raytheon.uf.common.dataplugin.shef.tables.DAARadar; import com.raytheon.uf.common.dataplugin.shef.tables.DAARadarId; +import com.raytheon.uf.common.ohd.AppsDefaults; import com.raytheon.uf.common.status.IUFStatusHandler; import com.raytheon.uf.common.status.UFStatus.Priority; -import com.raytheon.uf.common.time.util.TimeUtil; - -import com.raytheon.uf.common.ohd.AppsDefaults; import com.raytheon.uf.edex.database.dao.CoreDao; import com.raytheon.uf.edex.database.dao.DaoConfig; import com.raytheon.uf.edex.database.query.DatabaseQuery;