Skip to content

Commit 546e642

Browse files
author
Marcus Linke
committed
format sources
1 parent 4bd788f commit 546e642

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/com/github/dockerjava/api/model/Filters.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ private static List<String> labelsMapToList(Map<String, String> labels) {
9494

9595
@Override
9696
public boolean equals(Object o) {
97-
if (this == o) return true;
98-
if (o == null || getClass() != o.getClass()) return false;
97+
if (this == o)
98+
return true;
99+
if (o == null || getClass() != o.getClass())
100+
return false;
99101

100102
Filters filters1 = (Filters) o;
101103

0 commit comments

Comments
 (0)