Skip to content

Commit e2ba6c9

Browse files
committed
Minor fix
1 parent 6b917fa commit e2ba6c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/squareup/square/models/ListPaymentRefundsRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,10 @@ public boolean equals(Object obj) {
406406
&& Objects.equals(locationId, other.locationId)
407407
&& Objects.equals(status, other.status)
408408
&& Objects.equals(sourceType, other.sourceType)
409-
&& Objects.equals(limit, other.limit);
409+
&& Objects.equals(limit, other.limit)
410410
&& Objects.equals(updatedAtBeginTime, other.updatedAtBeginTime)
411411
&& Objects.equals(updatedAtEndTime, other.updatedAtEndTime)
412-
&& Objects.equals(sortField, other.sortField)
412+
&& Objects.equals(sortField, other.sortField);
413413
}
414414

415415
/**

0 commit comments

Comments
 (0)