Revision 47429 trunk/org.gvsig.desktop/org.gvsig.desktop.framework/org.gvsig.andami/src/main/java/org/gvsig/andami/plugins/PluginClassLoader.java

View differences:

PluginClassLoader.java
208 208
            throws ClassNotFoundException {
209 209
        Class<?> c = null;
210 210

  
211
        if(StringUtils.equals(name, "java/nio/file/SimpleFileVisitor")){
211
        if(StringUtils.equals(name, "java.nio.file.SimpleFileVisitor")){
212 212
            logger.info("Loading SimpleFileVisitor: isOtherLoader = "+isOtherLoader+" PluginName = "+this.getPluginName());
213 213
        }
214 214
        // Intentamos cargar con el URLClassLoader
......
219 219
                    logger.debug("Classloader {}, found class {}.", this.getPluginName(), name);
220 220
                }
221 221
            } catch (ClassNotFoundException e1) {
222
                if(StringUtils.equals(name, "java/nio/file/SimpleFileVisitor")){
222
                if(StringUtils.equals(name, "java.nio.file.SimpleFileVisitor")){
223 223
                    logger.info("ClassNotFoundException SimpleFileVisitor in classLoader = "+super.getClass().getName(),e1);
224 224
                }
225 225
            }

Also available in: Unified diff