Don't refer to full namespace paths that are already available
MicahElliott opened this issue · 0 comments
MicahElliott commented
;; good
(catch NoSuchFieldError ...
;; bad - java.lang not necessary
(catch java.lang.NoSuchFieldError ...
MicahElliott opened this issue · 0 comments
;; good
(catch NoSuchFieldError ...
;; bad - java.lang not necessary
(catch java.lang.NoSuchFieldError ...