private String getRealPath()

in src/java/org/apache/fulcrum/upload/DefaultUploadService.java [350:359]


	private String getRealPath(String path) {
		String absolutePath = null;
		if (applicationRoot == null) {
			absolutePath = new File(path).getAbsolutePath();
		} else {
			absolutePath = new File(applicationRoot, path).getAbsolutePath();
		}

		return absolutePath;
	}