View | Details | Raw Unified | Return to bug 110849 | Differences between
and this patch

Collapse All | Expand All

(-)batch/org/eclipse/jdt/internal/compiler/batch/Main.java (-2 / +2 lines)
Lines 2225-2232 Link Here
2225
			String classProp = System.getProperty("java.class.path"); //$NON-NLS-1$
2225
			String classProp = System.getProperty("java.class.path"); //$NON-NLS-1$
2226
			if ((classProp == null) || (classProp.length() == 0)) {
2226
			if ((classProp == null) || (classProp.length() == 0)) {
2227
				this.logger.logNoClasspath();
2227
				this.logger.logNoClasspath();
2228
			}
2228
				classpaths.add(FileSystem.getClasspath(System.getProperty("user.dir"), customEncoding, 0, null));//$NON-NLS-1$
2229
			else {
2229
			} else {
2230
				StringTokenizer tokenizer = new StringTokenizer(classProp, File.pathSeparator);
2230
				StringTokenizer tokenizer = new StringTokenizer(classProp, File.pathSeparator);
2231
				String token;
2231
				String token;
2232
				while (tokenizer.hasMoreTokens()) {
2232
				while (tokenizer.hasMoreTokens()) {

Return to bug 110849