2 Replies Latest reply on Feb 4, 2010 3:44 AM by jmesnil

    ConnectionFactoryConfigurationImpl constructor

    clebert.suconic

      There is this constructor:

       

         public ConnectionFactoryConfigurationImpl(final String name,
                                                   final List<Pair<TransportConfiguration, TransportConfiguration>> transportConfigs,
                                                   final TransportConfiguration backupConfig,
                                                   final String... bindings)
         {
            this(name, bindings);
            connectorConfigs = new ArrayList<Pair<TransportConfiguration, TransportConfiguration>>();
            connectorConfigs.addAll(transportConfigs);
         }
       
      

       

       

      It seems a typo to me.

      The parameter backupConfig wouldn't make sense here, it's actually not used.