Remove redundant "if" statement

pull/271/head
Mahmoud Ben Hassine 5 years ago
parent 9fdf8b7d04
commit cf8501e185
No known key found for this signature in database
GPG Key ID: 79FCFB0A184E0036

@ -68,9 +68,7 @@ class ActionMethodOrderBean implements Comparable<ActionMethodOrderBean> {
ActionMethodOrderBean that = (ActionMethodOrderBean) o;
if (order != that.order) return false;
if (!method.equals(that.method)) return false;
return true;
return method.equals(that.method);
}
@Override

Loading…
Cancel
Save