java: Fix a minor whitespace error in generated code.
authorRichard W.M. Jones <rjones@redhat.com>
Wed, 2 Mar 2011 04:30:30 +0000 (04:30 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Wed, 2 Mar 2011 05:21:27 +0000 (05:21 +0000)
In functions that don't have javadoc, the function prototype wasn't
being indented correctly.

generator/generator_java.ml

index 5ac92f7..e2e0003 100644 (file)
@@ -1,5 +1,5 @@
 (* libguestfs
- * Copyright (C) 2009-2010 Red Hat Inc.
+ * Copyright (C) 2009-2011 Red Hat Inc.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -133,8 +133,8 @@ public class GuestFS {
         pr "   * %s\n" doc;
         pr "   * @throws LibGuestFSException\n";
         pr "   */\n";
-        pr "  ";
       );
+      pr "  ";
       generate_java_prototype ~public:true ~semicolon:false name style;
       pr "\n";
       pr "  {\n";