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 347302 | Differences between
and this patch

Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/preferences/NewJavaProjectPreferencePage.java (-1 / +4 lines)
Lines 180-186 Link Here
180
		StringBuffer buf= new StringBuffer();
180
		StringBuffer buf= new StringBuffer();
181
		for (int i= 0; i < cpentries.length; i++) {
181
		for (int i= 0; i < cpentries.length; i++) {
182
			IClasspathEntry entry= cpentries[i];
182
			IClasspathEntry entry= cpentries[i];
183
			buf.append(desc);
183
184
			// Encode spaces - will be decoded using java.net.URLDecoder.decode(String, String)
185
			buf.append(desc.replace(' ', '+'));
186
184
			buf.append(' ');
187
			buf.append(' ');
185
			buf.append(entry.getEntryKind());
188
			buf.append(entry.getEntryKind());
186
			buf.append(' ');
189
			buf.append(' ');

Return to bug 347302