You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defuneclim-problems-correct ()
(interactive)
(let ((p (eclim--problems-get-current-problem)))
(if (not (string-match"\\.\\(groovy\\|java\\)$" (cdr (assoc'filename p))))
(error"Not a Java or Groovy file. Corrections are currently supported only for Java or Groovy.")
(eclim-java-correct (cdr (assoc'line p)) (eclim--byte-offset)))))
Someone removed the line (eclim-problems-open-current) from the function above.
The text was updated successfully, but these errors were encountered:
It was removed long time ago by the same person which added it in the first place dbc368b. On the other hand it would be nice to have this possibility.
Someone removed the line
(eclim-problems-open-current)
from the function above.The text was updated successfully, but these errors were encountered: