Skip to content
Snippets Groups Projects
Commit 03df7c75 authored by Max Barkley's avatar Max Barkley Committed by Michael Anstis
Browse files

RH-237: [Guided Decision Table] Old tables don't recognize imports properly (#22)

parent 7d483fdc
Branches
Tags
No related merge requests found
......@@ -42,7 +42,8 @@ public class Import {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
// Must do instanceof check because there is a subtype of this class in drools-workbench-models-datamodel-api
if (!(o instanceof Import)) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment