Revision 39202

View differences:

branches/v2_0_0_prep/applications/appgvSIG/src/org/gvsig/app/project/DefaultProject.java
762 762
		if (file.isAbsolute()) {
763 763
			return file;
764 764
		}
765
		return new File(rootFolder, file.getPath()).getAbsoluteFile();
765
		File f = new File(rootFolder, file.getPath()).getAbsoluteFile();
766
		String targetPath = FilenameUtils.normalize(f.getPath());
767
		return new File(targetPath);
766 768
	}
767 769

  
768 770
	public void loadState(InputStream in) {

Also available in: Unified diff