Browse Source

ob-java.el: Fix spacing in generated main method

* lisp/ob-java.el: Correct Indentation of closing curly braces when
the default main method is used.
John Herrlin 4 years ago
parent
commit
045ab0096a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ob-java.el

+ 1 - 1
lisp/ob-java.el

@@ -218,7 +218,7 @@ RESULT-FILE is the temp file to write the result."
       (org-babel-java--move-past org-babel-java--class-re)
       (insert "\n    public static void main(String[] args) {
         System.out.print(\"success\");
-}\n\n"))
+    }\n\n"))
 
     ;; special handling to return value
     (when (eq result-type 'value)