I fix the problem changing this line in Modeler class:
        
ITypeCacheAdapter existingTypeCacheAdapter =
        TypeCacheAdapter.getExistingTypeCacheAdapter(resourceSet);
                if (existingTypeCacheAdapter == null
        || !(existingTypeCacheAdapter instanceof TypeCacheAdapter))
        
(from 3.3.0)
        
by
        
if (TypeCacheAdapter.getExistingTypeCacheAdapter(resourceSet) == null)
        
(from 3.1.0)
        
By I understand why the orignal lines is the problem ...
        
Regard


_______________________________________________
Topcased-users mailing list
[email protected]
http://lists.gforge.enseeiht.fr/mailman/listinfo/topcased-users

Reply via email to