proxy/src/main/java/org/apache/directory/fortress/realm/util/CpUtil.java [78:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            StringTokenizer st = new StringTokenizer( classpath, pathSeparator, false );
            int size = st.countTokens();
            urls = new URL[size];
            
            for ( int i = 0; i < size; i++ )
            {
                String resource = st.nextToken();
                resource = getResource( resource, slash );
                String file = filePrefix + resource;
                urls[i] = new URL( file );
                LOG.info( CLS_NM + ".parseRealmClasspath path" + i + " <" + urls[i] + ">" );
            }
        }
        catch ( MalformedURLException me )
        {
            String error = CLS_NM + ".parseRealmClasspath caught MalformedURLException=" + me;
            LOG.severe( error );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



proxy/src/main/java/org/apache/directory/fortress/realm/util/CpUtil.java [146:162]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            StringTokenizer st = new StringTokenizer( classpath, pathSeparator, false );
            int size = st.countTokens();
            urls = new URL[size];
            
            for ( int i = 0; i < size; i++ )
            {
                String resource = st.nextToken();
                resource = getResource( resource, slash );
                String file = filePrefix + resource;
                urls[i] = new URL( file );
                LOG.info( CLS_NM + ".parseRealmClasspath path" + i + " <" + urls[i] + ">" );
            }
        }
        catch ( MalformedURLException me )
        {
            String error = CLS_NM + ".parseRealmClasspath caught MalformedURLException=" + me;
            LOG.severe( error );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



