X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.eclipse.ui.workbench%2Fsrc%2Forg%2Fargeo%2Feclipse%2Fui%2Fworkbench%2Fosgi%2FBundlesView.java;h=0734ef56d0ddb9883c10c5ccdc955d4058cbd057;hb=ded125237585a2b9022607f0864ed2a4bfe9f257;hp=ca32da0d839b99056c2a0ffb092f00ce6292833a;hpb=9761b519d89f11b793ecd720f5e2a8a8fe61af3b;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java b/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java index ca32da0d8..0734ef56d 100644 --- a/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java +++ b/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java @@ -108,9 +108,10 @@ public class BundlesView extends ViewPart { public String getText(Object element) { - return ""; + // return ""; // FIXME triggers compilation failure - // return ((Bundle) element).getVersion().toString(); + Bundle bundle = (org.osgi.framework.Bundle) element; + return bundle.getVersion().toString(); } }); new ColumnViewerComparator(column, new Comparator() {