1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[227516] [regression] Fix ArrayIndexOutOfBoundsException in TableView

This commit is contained in:
Martin Oberhuber 2008-04-17 10:10:08 +00:00
parent 05b8a3f991
commit 81dd25f914

View file

@ -20,6 +20,7 @@
* David McKnight (IBM) - [224313] [api] Create RSE Events for MOVE and COPY holding both source and destination fields
* David McKnight (IBM) - [225506] [api][breaking] RSE UI leaks non-API types
* Martin Oberhuber (Wind River) - [218304] Improve deferred adapter loading
* Martin Oberhuber (Wind River) - [227516] [regression] Fix ArrayIndexOutOfBoundsException in TableView
********************************************************************************/
package org.eclipse.rse.ui.view;
@ -558,6 +559,10 @@ public class SystemTableView
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=193329#c5
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=187571
results.add(propertyValue.getClass());
} else {
// FIXME Fallback: Display property value as String,
// is this always possible?
results.add(String.class);
}
}
catch (Exception e)