(final Object object1, final Object object2)
| 122 | } |
| 123 | |
| 124 | private static boolean isEqual(final Object object1, final Object object2) { |
| 125 | final boolean result; |
| 126 | |
| 127 | if (object1 == null && object2 == null) { |
| 128 | result = true; |
| 129 | } |
| 130 | else if (object1 == null || object2 == null) { |
| 131 | result = false; |
| 132 | } |
| 133 | else { |
| 134 | result = object1.equals(object2); |
| 135 | } |
| 136 | |
| 137 | return result; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Returns a string representation of this event. |
no test coverage detected