src/main/java/org/apache/log4j/receivers/net/XMLSocketNode.java [60:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try {
      Class c = Class.forName(decoder);
      Object o = c.newInstance();

      if (o instanceof Decoder) {
        this.decoder = (Decoder) o;
      }
    } catch (ClassNotFoundException cnfe) {
      getLogger().warn("Unable to find decoder", cnfe);
    } catch (IllegalAccessException iae) {
      getLogger().warn("Unable to construct decoder", iae);
    } catch (InstantiationException ie) {
      getLogger().warn("Unable to construct decoder", ie);
    }

    this.socket = socket;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/log4j/receivers/net/XMLSocketNode.java [81:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try {
      Class c = Class.forName(decoder);
      Object o = c.newInstance();

      if (o instanceof Decoder) {
        this.decoder = (Decoder) o;
      }
    } catch (ClassNotFoundException cnfe) {
      getLogger().warn("Unable to find decoder", cnfe);
    } catch (IllegalAccessException iae) {
      getLogger().warn("Unable to construct decoder", iae);
    } catch (InstantiationException ie) {
      getLogger().warn("Unable to construct decoder", ie);
    }

    this.socket = socket;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



