Skip to content
Snippets Groups Projects
Commit 6510f068 authored by cfsnook's avatar cfsnook
Browse files

Do not ignore changes to generic attributes (introduced 16076) as Camille...

Do not ignore changes to generic attributes (introduced 16076) as Camille generates a timestamp attribute.

git-svn-id: svn://svn.code.sf.net/p/rodin-b-sharp/svn/trunk/Camille@16242 1434b563-b632-4741-aa49-43a3a8374d2e
parent efe1cbf8
No related branches found
No related tags found
No related merge requests found
......@@ -92,8 +92,8 @@ public class EventBReferencesCheck extends ReferencesCheck {
ignore = ignore || "sees".equals(name);
ignore = ignore || "extends".equals(name);
ignore = ignore || "annotations".equals(name);
ignore = ignore || "extensions".equals(name); //ADDED
ignore = ignore || "attributes".equals(name); //ADDED
ignore = ignore || "extensions".equals(name);
//ignore = ignore || "attributes".equals(name); //Cannot ignore generic attributes since camille timestamp is an attribute
ignore = ignore || reference.eContainer().equals(CorePackage.eINSTANCE.getAnnotation());
return ignore;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment