Skip to content

Commit

Permalink
feat: Add toString method for CustomPlacementConfig (#1602)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-munro committed Sep 2, 2022
1 parent 950358b commit 51aca10
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -353,6 +353,11 @@ public int hashCode() {
return Objects.hashCode(dataLocations);
}

@Override
public String toString() {
return MoreObjects.toStringHelper(this).add("dataLocations", dataLocations).toString();
}

public static Builder newBuilder() {
return new Builder();
}
Expand Down

0 comments on commit 51aca10

Please sign in to comment.