Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -614,15 +614,6 @@ private int initializeBuilder(int kind, boolean forBuild) throws CoreException {
// Flush the existing external files cache if this is the beginning of a build cycle
String projectName = this.currentProject.getName();
if (builtProjects == null || builtProjects.contains(projectName)) {
try {
Method method = JavaModel.class.getMethod("flushExternalFileCache", new Class[] { Void.class });
if (method != null) {
method.invoke(JavaModel.class, new Object[0]);
}
} catch (Throwable e) {
e.printStackTrace();
}
//JavaModel.flushExternalFileCache();
builtProjects = new ArrayList();
}
builtProjects.add(projectName);
Expand Down