We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c528f0c commit 32fc2e9Copy full SHA for 32fc2e9
src/main/java/io/appium/java_client/AppiumBy.java
@@ -267,8 +267,8 @@ public boolean equals(Object o) {
267
return false;
268
}
269
AppiumBy appiumBy = (AppiumBy) o;
270
- return Objects.equals(remoteParameters, appiumBy.remoteParameters) &&
271
- Objects.equals(locatorName, appiumBy.locatorName);
+ return Objects.equals(remoteParameters, appiumBy.remoteParameters)
+ && Objects.equals(locatorName, appiumBy.locatorName);
272
273
274
@Override
0 commit comments