commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java [232:241]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                final Object instance = getFactory( attributes ).createObject( attributes );

                if ( getDigester().getLogger().isDebugEnabled() )
                {
                    getDigester().getLogger().debug( format( "[FactoryCreateRule]{%s} New %s",
                                                             getDigester().getMatch(),
                                                             instance == null ? "null object"
                                                                             : instance.getClass().getName() ) );
                }
                getDigester().push( instance );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java [265:274]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            final Object instance = getFactory( attributes ).createObject( attributes );

            if ( getDigester().getLogger().isDebugEnabled() )
            {
                getDigester().getLogger().debug( format( "[FactoryCreateRule]{%s} New %s",
                                                         getDigester().getMatch(),
                                                         instance == null ? "null object"
                                                                         : instance.getClass().getName() ) );
            }
            getDigester().push( instance );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



