On Thu, Nov 26, 2009 at 11:23 AM, Niclas Hedhman <[email protected]> wrote:
>        if( !visitor.visitModule( moduleInstance,
> moduleInstance.model(), visibility ) )
>        {
>            return false;
>        }

And if I refactor it to;

boolean result = visitor.visitModule( moduleInstance,
moduleInstance.model(), visibility );
if( !result )
{
    return false;
}

then that part works.... WTF is going on?


Cheers
-- 
Niclas Hedhman, Software Developer
http://www.qi4j.org - New Energy for Java

I  live here; http://tinyurl.com/2qq9er
I  work here; http://tinyurl.com/2ymelc
I relax here; http://tinyurl.com/2cgsug

_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to