> + return null;
> + }
> + }
> +
> + /**
> + * Iterates through all bundles to get the available @link
> ScriptEngineFactory classes
> + * @return the names of the available ScriptEngineFactory classes
> + * @throws IOException
> + */
> + private List<String> findFactoryCandidates(BundleContext context) {
> + Bundle[] bundles = context.getBundles();
> + List<String> factoryCandidates = new ArrayList<String>();
> + for (Bundle bundle : bundles) {
> + if (bundle == null) {
> + continue;
> + }
Wow, some funky formatting there ;-)
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-karaf/pull/79/files/0b99dad1aa7786eaf11028bf91fc1d272c189f0b#r77755910