> @@ -51,9 +47,7 @@ public String evaluate(Object obj, String expression) {
> try {
> scriptEngine.put(getType(), obj);
> result = String.valueOf(scriptEngine.eval(expression));
> - } catch (Exception ex) {
> - //Ignore
> - }
> + } catch (Exception ignored) {}
> return result;
If we throw the ISE int he constructor, could we assume then that failures here
are due to the expressions used to extract the values of the columns, thus,
non-fatal errors users can fix by editing the shell.cfg file?
--
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/6c68f0d234eae7732069b14ac47bad8c885eed27#r78021836