Issue #1949 Force ModelSounding in Vb to play nicely with others.

Former-commit-id: 62519247e8 [formerly f6357d8ed5] [formerly 3342990f2f] [formerly f3e7ff0d0b [formerly 3342990f2f [formerly 5e2b6a200aca6d9bbd1b00b9d61f1b8e723547ab]]]
Former-commit-id: f3e7ff0d0b
Former-commit-id: e0e28481864e73c9fe8314e6e422ec9e47f86936 [formerly cf73134a4e]
Former-commit-id: 2af97cfee3
This commit is contained in:
Ben Steffensmeier 2013-05-01 13:41:51 -05:00
parent f843e49163
commit dade51c488

View file

@ -51,6 +51,8 @@ import com.raytheon.viz.volumebrowser.xml.VbSourceList;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Sep 28, 2011 mschenke Initial creation
* May 02, 2013 1949 bsteffen Force ModelSounding in Vb to play nicely
* with others.
*
* </pre>
*
@ -167,7 +169,9 @@ public class ModelSoundingCatalog extends PointDataCatalog {
String[] selectedSources = request.getSelectedSources();
if (selectedSources != null) {
for (int i = 0; i < selectedSources.length; i++) {
selectedSources[i] = pluginName;
if (selectedSources[i].startsWith(pluginName)) {
selectedSources[i] = pluginName;
}
}
}
return request;