Hi guys,
  There is a bug in getTypeIdFor method of ExtendedPatternFormatter
class:

    protected int getTypeIdFor( final String type )
    {
        if( type.equalsIgnoreCase( TYPE_METHOD_STR ) ) return TYPE_METHOD;
        else if( type.equalsIgnoreCase( TYPE_THREAD_STR ) ) return TYPE_THREAD;
        else
        {
            return getTypeIdFor( type );
    //      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        }
    }

  This probably should be something like:

            . . .
            return super.getTypeIdFor( type );
            . . .
    
-- 
Best regards,
 Andrew                            mailto:[EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to