Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2013-12-21 08:19:25 +0000
committerTom Schindl2013-12-21 08:19:25 +0000
commit95e32dae4dff3fc5b5eab39cbc706e7a894e5280 (patch)
tree60e0bca4355fb14dc9e21b58ba7288e745332bfd
parent0bc8433cd7f20dc41319e6127bc9d5dfba319a55 (diff)
downloadorg.eclipse.efxclipse-95e32dae4dff3fc5b5eab39cbc706e7a894e5280.tar.gz
org.eclipse.efxclipse-95e32dae4dff3fc5b5eab39cbc706e7a894e5280.tar.xz
org.eclipse.efxclipse-95e32dae4dff3fc5b5eab39cbc706e7a894e5280.zip
Bug 424554 - Add possibility to create an IObservableList from another
IObservableList converting values from source to target
-rwxr-xr-xbundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/AdapterFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/AdapterFactory.java b/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/AdapterFactory.java
index 88b3fc918..ab3beb522 100755
--- a/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/AdapterFactory.java
+++ b/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/AdapterFactory.java
@@ -572,7 +572,7 @@ public class AdapterFactory {
* @return observable list with converter value
*/
@SuppressWarnings("unchecked")
- public static <S, T> IObservableList convertObservableList(IObservableList source, Callback<S, T> converter) {
+ public static <S, T> IObservableList convertObservableList(IObservableList source, final Callback<S, T> converter) {
final ReadonlyWritableList target = new ReadonlyWritableList(source.getRealm());
try {

Back to the top