Issue #1927 - patch ant includegen task
Former-commit-id: 912ec4daa384140f583d05d650734a9871ae1735
This commit is contained in:
parent
8496832064
commit
40e8f544ea
5 changed files with 2 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -35,6 +35,7 @@ import com.raytheon.uf.featureexplorer.search.IPluginSearch;
|
||||||
* Oct 7, 2008 SP#15 bclement Changed ArrayList references to List
|
* Oct 7, 2008 SP#15 bclement Changed ArrayList references to List
|
||||||
* Oct 10, 2008 SP#15 bclement Added static functions for reading manifests
|
* Oct 10, 2008 SP#15 bclement Added static functions for reading manifests
|
||||||
* Feb 4, 2013 #1577 bkowal Verify that a plugin has not been included in more than one feature.
|
* Feb 4, 2013 #1577 bkowal Verify that a plugin has not been included in more than one feature.
|
||||||
|
* May 22, 2013 #1927 bkowal Fix improper String comparison
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @author dglazesk
|
* @author dglazesk
|
||||||
|
@ -187,7 +188,7 @@ public class FeatureExplorer {
|
||||||
plugin.getVersion());
|
plugin.getVersion());
|
||||||
try {
|
try {
|
||||||
if (this.pluginLookupMap.containsKey(plugin.getId())
|
if (this.pluginLookupMap.containsKey(plugin.getId())
|
||||||
&& this.pluginLookupMap.get(plugin.getId()) != aFile) {
|
&& this.pluginLookupMap.get(plugin.getId()).equals(aFile)) {
|
||||||
StringBuilder stringBuilder = new StringBuilder("Plugin ");
|
StringBuilder stringBuilder = new StringBuilder("Plugin ");
|
||||||
stringBuilder.append(plugin.getId());
|
stringBuilder.append(plugin.getId());
|
||||||
stringBuilder.append(" is in Feature ");
|
stringBuilder.append(" is in Feature ");
|
||||||
|
|
Loading…
Add table
Reference in a new issue