From 8808f1c6f0a55e04f817d3236f041aac798d4394 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Thu, 26 Sep 2019 10:57:30 +0300 Subject: [PATCH] upgrade sci: fix for catch when expression returned nil --- sci | 2 +- src/babashka/impl/exceptions.clj | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sci b/sci index c1a70167..1463f847 160000 --- a/sci +++ b/sci @@ -1 +1 @@ -Subproject commit c1a70167bed16004b5cd57add028215184a4f708 +Subproject commit 1463f84738120275bc58351232ecd1acdaf0fcb1 diff --git a/src/babashka/impl/exceptions.clj b/src/babashka/impl/exceptions.clj index d36adf61..69224f2d 100644 --- a/src/babashka/impl/exceptions.clj +++ b/src/babashka/impl/exceptions.clj @@ -1,7 +1,5 @@ (ns babashka.impl.exceptions) (def exception-bindings - {'Exception Exception - 'java.lang.Exception Exception - 'ArithmeticException ArithmeticException + {'ArithmeticException ArithmeticException 'java.lang.ArithmeticException ArithmeticException})