Issue #2509: Fix bad merge of DupElimSrv
Change-Id: I72702e9943016cd6e00ecc8755222d8de31ee322 Former-commit-id:01a8461ec9
[formerly5286ef0efa
[formerly a266d4007bdb58525942ef406d6fd7a4d269bb8c]] Former-commit-id:5286ef0efa
Former-commit-id:02f48f898f
This commit is contained in:
parent
bf845a6f50
commit
3dd79852c5
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
|||
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||
* further licensing information.
|
||||
**/
|
||||
package com.raytheon.edex.ingestsrv;
|
||||
package com.raytheon.uf.edex.ingest;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -94,7 +94,7 @@ public class DupElimSrv {
|
|||
for (Map.Entry<String, Object> field : dataUriFields.entrySet()) {
|
||||
String fieldName = field.getKey();
|
||||
// ignore pluginName
|
||||
if (!DataURIUtil.PLUGIN_NAME_KEY.equals(fieldName)) {
|
||||
if (!PluginDataObject.PLUGIN_NAME_ID.equals(fieldName)) {
|
||||
dbQuery.addQueryParam(field.getKey(), field.getValue());
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue