The following document contains the results of PMD's CPD 4.2.2.
| File | Line | 
|---|---|
| org/apache/xbean/classpath/SystemClassPath.java | 54 | 
| org/apache/xbean/classpath/TomcatClassPath.java | 107 | 
            sun.misc.URLClassPath cp = getURLClassPath((URLClassLoader) getClassLoader());
            URL[] urls = cp.getURLs();
            //for (int i=0; i < urls.length; i++){
            //    System.out.println(urls[i].toExternalForm());
            //}
            if (urls.length < 1)
                return;
            StringBuffer path = new StringBuffer(urls.length * 32);
            File s = new File(urls[0].getFile());
            path.append(s.getPath());
            //System.out.println(s.getPath());
            for (int i = 1; i < urls.length; i++) {
                path.append(File.pathSeparator);
                s = new File(urls[i].getFile());
                //System.out.println(s.getPath());
                path.append(s.getPath());
            }
 | |