Skip to content

Commit 50c35bf

Browse files
Github workflow fixes
1 parent 8a9f755 commit 50c35bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/io/appium/java_client/AppiumBy.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ public boolean equals(Object o) {
267267
return false;
268268
}
269269
AppiumBy appiumBy = (AppiumBy) o;
270-
return Objects.equals(remoteParameters, appiumBy.remoteParameters) && Objects.equals(locatorName, appiumBy.locatorName);
270+
return Objects.equals(remoteParameters, appiumBy.remoteParameters) &&
271+
Objects.equals(locatorName, appiumBy.locatorName);
271272
}
272273

273274
@Override

0 commit comments

Comments
 (0)