Skip to content
Snippets Groups Projects
Commit 9ed79a3c authored by Florian Hölzl's avatar Florian Hölzl
Browse files

file extension .af3_23 working properly

updated eCar and operator panel tutorial
refs 1086
parent 2373b14d
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ import org.osgi.framework.Bundle;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: CD1228D699275835E9DA2E9079A5F264
* @ConQAT.Rating YELLOW Hash: AF3D87A79963DC5C990AD23EC1CE736B
*/
public class EclipseResourceStorageProvider implements IEclipseResourceStorageService,
IResourceChangeListener, IResourceDeltaVisitor, IStorageProvider {
......@@ -277,7 +277,8 @@ public class EclipseResourceStorageProvider implements IEclipseResourceStorageSe
private void checkFiles() {
List<ModelStorageError> iter = new ArrayList<ModelStorageError>(errorFiles);
for(ModelStorageError err : iter) {
if(!((FileModelStorageError)err).file.exists()) {
IFile file = ((FileModelStorageError)err).file;
if(loadedContexts.containsKey(file) || !file.exists()) {
errorFiles.remove(err);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment