deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/config/DeltaSpikeConfigInfo.java [78:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ClassLoader originalCl = Thread.currentThread().getContextClassLoader();
        try
        {
            Thread.currentThread().setContextClassLoader(appConfigClassLoader);

            List<ConfigEntry> configEntries = calculateConfigEntries();

            String[] configArray = new String[configEntries.size()];

            for (int i = 0 ; i < configEntries.size(); i++)
            {
                ConfigEntry configEntry = configEntries.get(i);
                configArray[i] = configEntry.getKey() + " = " + configEntry.getValue()
                    + " - picked up from: " + configEntry.getFromConfigSource();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/config/DeltaSpikeConfigInfo.java [107:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ClassLoader originalCl = Thread.currentThread().getContextClassLoader();
        try
        {
            Thread.currentThread().setContextClassLoader(appConfigClassLoader);

            List<ConfigEntry> configEntries = calculateConfigEntries();

            String[] configArray = new String[configEntries.size()];

            for (int i = 0 ; i < configEntries.size(); i++)
            {
                ConfigEntry configEntry = configEntries.get(i);
                configArray[i] = configEntry.getKey() + " = " + configEntry.getValue()
                    + " - picked up from: " + configEntry.getFromConfigSource();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



