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/tool/EclipseFileManager.java (-1 / +2 lines)
Lines 130-139 Link Here
130
	 */
130
	 */
131
	@Override
131
	@Override
132
	public void close() throws IOException {
132
	public void close() throws IOException {
133
		this.locations = null;
133
		if (this.locations != null) this.locations.clear();
134
		for (Archive archive : this.archivesCache.values()) {
134
		for (Archive archive : this.archivesCache.values()) {
135
			archive.close();
135
			archive.close();
136
		}
136
		}
137
		this.archivesCache.clear();
137
	}
138
	}
138
	
139
	
139
	private void collectAllMatchingFiles(File file, String normalizedPackageName, Set<Kind> kinds, boolean recurse, ArrayList<JavaFileObject> collector) {
140
	private void collectAllMatchingFiles(File file, String normalizedPackageName, Set<Kind> kinds, boolean recurse, ArrayList<JavaFileObject> collector) {

Return to bug 188796