[java2perl6] r82 committed - Fix whitespace around ' is ' in inherited class declarations.

[email protected] Mon, 10 Aug 2009 21:07:18 +0000
Newsgroups perl.dbdi.dev
Message-ID <[email protected]>
Revision: 82
Author: tim.bunce
Date: Mon Aug 10 14:06:46 2009
Log: Fix whitespace around ' is ' in inherited class declarations.

http://code.google.com/p/java2perl6/source/detail?r=82

Modified:
  /trunk/lib/Java/Javap/Generator/Std.pm

=======================================
--- /trunk/lib/Java/Javap/Generator/Std.pm	Mon Aug 10 10:18:12 2009
+++ /trunk/lib/Java/Javap/Generator/Std.pm	Mon Aug 10 14:06:46 2009
@@ -239,7 +239,7 @@
  use [% package -%];
  [% END %]

-class [% ast.perl_qualified_name %] [%- ast.cast_parent  
== '' ? '' : 'is' %][% ast.cast_parent -%] {
+class [% ast.perl_qualified_name %] [%- ast.cast_parent == '' ? '' : '  
is ' %][% ast.cast_parent -%] {
  [% FOREACH element IN ast.method_list %]
      [% ast.methods.${ element.name } > 1 ? 'multi ' : '' %]method [%  
element.name %](
  [% arg_counter = 0 %]