Skip to content

Commit

Permalink
Fix #369 [Spy] StackOverflow in the ContextSpy when selecting the Osg… (
Browse files Browse the repository at this point in the history
#408)

* Fix #369 [Spy] StackOverflow in the ContextSpy when selecting the OsgiContext

* Update manifest version
  • Loading branch information
opcoach committed Nov 19, 2022
1 parent 493e4a6 commit fc645e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/org.eclipse.pde.spy.context/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %name
Bundle-SymbolicName: org.eclipse.pde.spy.context;singleton:=true
Bundle-Version: 1.0.300.qualifier
Bundle-Version: 1.0.400.qualifier
Bundle-Vendor: %provider-name
Automatic-Module-Name: org.eclipse.pde.spy.context
Bundle-RequiredExecutionEnvironment: JavaSE-11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public Object[] getChildren(Object inputElement) {
for (String key : selectedContext.localContextFunction().keySet())
try {
cfValues.put(key, selectedContext.get(key));
} catch (Exception e) {
} catch (Throwable e) {
cfValues.put(key, NO_VALUE_COULD_BE_COMPUTED + " (Exception : " + e.getClass().getName() + ")"); //$NON-NLS-1$ //$NON-NLS-2$
}
result.addAll(cfValues.entrySet());
Expand Down

0 comments on commit fc645e8

Please sign in to comment.