Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6fe1f086 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- fixed incorrect implementation of inverse()

parent 7656f288
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,6 @@ public class LinkkeyEquals extends LinkkeyBinding{
}
public LinkkeyEquals inverse() {
return new LinkkeyEquals( expression1, expression2 );
return new LinkkeyEquals( expression2, expression1 );
}
}
......@@ -39,6 +39,6 @@ public class LinkkeyIntersects extends LinkkeyBinding {
}
public LinkkeyIntersects inverse() {
return new LinkkeyIntersects( expression1, expression2 );
return new LinkkeyIntersects( expression2, expression1 );
}
}
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