Still there, and even worse (loop on Internal error)


Alain Ravet wrote:
> When moving from class A to class B the 2 static variable below, the 
> comma is left behind, and the code doesn't compile.
> 
> 
> Before:
> ------------------------------------------------
> Class A
> ------------------------------------------------
>     ..
>     }
>     final static String
>             LEFT_JUSTIFIED_PREFIX   =   "%r" ,
>             RIGHT_JUSTIFIED_PREFIX  =   "%l" ;
> 
>     public void ..
> 
> 
> After
> ------------------------------------------------
> Class A
> ------------------------------------------------
>     ...
>     }
>                         ,
> 
>     public void ..
>     {
> 
> 
> Class B
>     ...
>     final static String
>             LEFT_JUSTIFIED_PREFIX   =   "%r"
>     RIGHT_JUSTIFIED_PREFIX  =   "%l" ;
>     ...
> 

_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs

Reply via email to