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

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/builder/AbstractImageBuilder.java (-1 / +4 lines)
Lines 243-249 Link Here
243
							if (!isOutputFolder) {
243
							if (!isOutputFolder) {
244
								if (folderPath == null)
244
								if (folderPath == null)
245
									folderPath = proxy.requestFullPath();
245
									folderPath = proxy.requestFullPath();
246
								createFolder(folderPath.removeFirstSegments(segmentCount), outputFolder);
246
								String packageName = folderPath.lastSegment();
247
								// only create the package if its a valid package name
248
								if (packageName.length() > 0 && packageName.indexOf('.') == -1)
249
									createFolder(folderPath.removeFirstSegments(segmentCount), outputFolder);
247
							}
250
							}
248
					}
251
					}
249
					return true;
252
					return true;

Return to bug 154693