You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2009/02/17 22:56:05 UTC

svn commit: r745264 - /buildr/trunk/lib/buildr/java/compiler.rb

Author: boisvert
Date: Tue Feb 17 21:56:05 2009
New Revision: 745264

URL: http://svn.apache.org/viewvc?rev=745264&view=rev
Log:
Removed leading spaces for better rdoc rendering (suggested by Sander Sõnajalg)

Modified:
    buildr/trunk/lib/buildr/java/compiler.rb

Modified: buildr/trunk/lib/buildr/java/compiler.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/java/compiler.rb?rev=745264&r1=745263&r2=745264&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/java/compiler.rb (original)
+++ buildr/trunk/lib/buildr/java/compiler.rb Tue Feb 17 21:56:05 2009
@@ -31,13 +31,13 @@
     # Accepts the following options:
     # * :warnings    -- Issue warnings when compiling.  True when running in verbose mode.
     # * :debug       -- Generates bytecode with debugging information.  Set from the debug
-    #                   environment variable/global option.
+    # environment variable/global option.
     # * :deprecation -- If true, shows deprecation messages.  False by default.
     # * :source      -- Source code compatibility.
     # * :target      -- Bytecode compatibility.
     # * :lint        -- Lint option is one of true, false (default), name (e.g. 'cast') or array.
     # * :other       -- Array of options passed to the compiler 
-    #                   (e.g. ['-implicit:none', '-encoding', 'iso-8859-1'])
+    # (e.g. ['-implicit:none', '-encoding', 'iso-8859-1'])
     class Javac < Base
 
       OPTIONS = [:warnings, :debug, :deprecation, :source, :target, :lint, :other]