File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/main/java/com/github/dockerjava/api/command Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 44import java .util .Map ;
55
66import com .github .dockerjava .core .RemoteApiVersion ;
7+ import org .apache .commons .lang .builder .EqualsBuilder ;
8+ import org .apache .commons .lang .builder .HashCodeBuilder ;
79import org .apache .commons .lang .builder .ToStringBuilder ;
810
911import com .fasterxml .jackson .annotation .JsonIgnore ;
@@ -395,6 +397,16 @@ public String getFinishedAt() {
395397 return finishedAt ;
396398 }
397399
400+ @ Override
401+ public boolean equals (Object o ) {
402+ return EqualsBuilder .reflectionEquals (this , o );
403+ }
404+
405+ @ Override
406+ public int hashCode () {
407+ return HashCodeBuilder .reflectionHashCode (this );
408+ }
409+
398410 @ Override
399411 public String toString () {
400412 return ToStringBuilder .reflectionToString (this );
You can’t perform that action at this time.
0 commit comments