Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 188796 | Differences between
and this patch

Collapse All | Expand All

(-)org/eclipse/jdt/internal/compiler/tool2/EclipseCompiler.java (-1 / +6 lines)
Lines 139-145 Link Here
139
				if (!uri.isAbsolute()) {
139
				if (!uri.isAbsolute()) {
140
					uri = URI.create("file://" + uri.toString()); //$NON-NLS-1$
140
					uri = URI.create("file://" + uri.toString()); //$NON-NLS-1$
141
				}
141
				}
142
				allOptions.add(new File(uri).getAbsolutePath());
142
143
				if (uri.getScheme().equals("file")) {
144
					allOptions.add(new File(uri).getAbsolutePath());
145
				} else {
146
					allOptions.add(uri.toString());
147
				}
143
			}
148
			}
144
		}
149
		}
145
150

Return to bug 188796