Revision: 4811
          http://sourceforge.net/p/jump-pilot/code/4811
Author:   edso
Date:     2016-02-02 09:40:20 +0000 (Tue, 02 Feb 2016)
Log Message:
-----------
unstring line 581 to find cause for "Exception in AttributeTablePanel"
 https://sourceforge.net/p/jump-pilot/bugs/415/ 

Modified Paths:
--------------
    core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java

Modified: 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java
===================================================================
--- 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java    
    2016-02-01 22:36:37 UTC (rev 4810)
+++ 
core/trunk/src/com/vividsolutions/jump/workbench/ui/AttributeTablePanel.java    
    2016-02-02 09:40:20 UTC (rev 4811)
@@ -578,7 +578,10 @@
                     // create a set of sorted rows to be selected
                     Set<Integer> rowset = new TreeSet<Integer>();
                     for (Object obj : selection) {
-                        rowset.add(mapIdRow.get(((Feature) obj).getID()));
+                      Feature f = (Feature) obj;
+                      int id = f.getID();
+                      Integer i = mapIdRow.get(id);
+                      rowset.add(i);
                     }
 
                     // update the table


------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to