(defn wall-hack-field "Access to private or protected field." {:deprecated "1.2"} [class-name field-name obj] (-> class-name (.getDeclaredField (name field-name)) (doto (.setAccessible true)) (.get obj)))
Comments top
No comments for wall-hack-field. Log in to add a comment.