src/main/java/org/apache/log4j/net/MulticastReceiver.java [113:126]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            Class c = Class.forName(decoder);
            Object o = c.newInstance();

            if (o instanceof Decoder) {
                this.decoderImpl = (Decoder) o;
            }
        } catch (ClassNotFoundException cnfe) {
            logger.warn("Unable to find decoder", cnfe);
        } catch (IllegalAccessException | InstantiationException iae) {
            logger.warn("Could not construct decoder", iae);
        }

        try {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/log4j/net/UDPReceiver.java [112:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            Class c = Class.forName(decoder);
            Object o = c.newInstance();

            if (o instanceof Decoder) {
                this.decoderImpl = (Decoder) o;
            }
        } catch (ClassNotFoundException cnfe) {
            logger.warn("Unable to find decoder", cnfe);
        } catch (IllegalAccessException | InstantiationException iae) {
            logger.warn("Could not construct decoder", iae);
        }

        try {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



