private URL readWorkflowURL()

in taverna-commandline-common/src/main/java/org/apache/taverna/commandline/CommandLineTool.java [421:428]


	private URL readWorkflowURL(String workflowOption) throws OpenDataflowException {
		try {
			return new URL(new URL("file:"), workflowOption);
		} catch (MalformedURLException e) {
			throw new OpenDataflowException("The was an error processing the URL to the workflow: "
					+ e.getMessage(), e);
		}
	}