mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-09 03:23:07 +02:00
Fix for [Bug 175509] [Project Model] lots of "storage file not found" msgs in error log
This commit is contained in:
parent
7360d17945
commit
9f848fe7b2
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,6 @@ import java.io.InputStream;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
@ -361,7 +360,7 @@ public class CProjectDescriptionManager {
|
||||||
try {
|
try {
|
||||||
des = loadProjectDescription(project);
|
des = loadProjectDescription(project);
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
CCorePlugin.log(e);
|
// CCorePlugin.log(e);
|
||||||
}
|
}
|
||||||
if(des == null){
|
if(des == null){
|
||||||
//TODO: check if conversion needed
|
//TODO: check if conversion needed
|
||||||
|
|
Loading…
Add table
Reference in a new issue