Function: flymake-proc-simple-java-cleanup
flymake-proc-simple-java-cleanup is a byte-compiled function defined
in flymake-proc.el.gz.
Signature
(flymake-proc-simple-java-cleanup)
Documentation
Cleanup after flymake-proc-simple-make-java-init -- delete temp file and dirs.
Aliases
flymake-simple-java-cleanup (obsolete since 26.1)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake-proc.el.gz
(defun flymake-proc-simple-java-cleanup ()
"Cleanup after `flymake-proc-simple-make-java-init' -- delete temp file and dirs."
(flymake-proc--safe-delete-file flymake-proc--temp-source-file-name)
(when flymake-proc--temp-source-file-name
(flymake-proc--delete-temp-directory
(file-name-directory flymake-proc--temp-source-file-name))))