Revision 723

View differences:

org.gvsig.geoprocess/trunk/org.gvsig.geoprocess/pom.xml
11 11
	<parent>
12 12
		<groupId>org.gvsig</groupId>
13 13
		<artifactId>org.gvsig.desktop</artifactId>
14
		<version>2.0.107</version>
14
		<version>2.0.109</version>
15 15
	</parent>
16 16

  
17 17
	<properties>
org.gvsig.geoprocess/trunk/org.gvsig.geoprocess/org.gvsig.geoprocess.lib/org.gvsig.geoprocess.lib.sextante/src/main/java/org/gvsig/geoprocess/lib/sextante/SextanteGeoProcessManager.java
78 78
/**
79 79
 * Implementation for the {@link GeoProcessManager} interface based on the
80 80
 * sextante library.
81
 * 
81
 *
82 82
 * @author gvSIG Team
83 83
 * @version $Id$
84 84
 */
......
190 190
        String algName = alg.getClass().getSimpleName();
191 191
        String helpFileName =
192 192
            algName + "_" + Locale.getDefault().getLanguage() + ".xml";
193
        String currentLocaleHelp = "help" + File.separator + helpFileName;
193
        String currentLocaleHelp = "help" + "/" + helpFileName;
194 194
        InputStream is =
195 195
            alg.getClass().getClassLoader()
196 196
                .getResourceAsStream(currentLocaleHelp);
197 197
        if (is == null) {
198 198
            helpFileName = algName + ".xml";
199
            currentLocaleHelp = "help" + File.separator + helpFileName;
199
            currentLocaleHelp = "help" + "/" + helpFileName;
200 200
            is =
201 201
                alg.getClass().getClassLoader()
202 202
                    .getResourceAsStream(currentLocaleHelp);

Also available in: Unified diff