You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2007/02/14 13:59:44 UTC

svn commit: r507520 - /incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java

Author: schor
Date: Wed Feb 14 04:59:43 2007
New Revision: 507520

URL: http://svn.apache.org/viewvc?view=rev&rev=507520
Log:
UIMA-315. The code handling the "hover" was using the wrong
"key" to get the resource specifier from the resolved delegates.
It was using the file name, rather than the key name. This
error occurred during a refactoring which happened when
flow controllers were added.

Modified:
    incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java

Modified: incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java?view=diff&rev=507520&r1=507519&r2=507520
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-ep-configurator/src/main/java/org/apache/uima/taeconfigurator/editors/ui/AggregateSection.java Wed Feb 14 04:59:43 2007
@@ -535,7 +535,7 @@
       Map dels = editor.getResolvedDelegates();
       if (null != dels) {
         sDesc = getDescriptionForDescriptor(item.getText(0), (ResourceSpecifier) dels.get(item
-                .getText(0)));
+                .getText(1)));
       }
     }
     filesTable.setToolTipText(sDesc);