Skip to content

Commit

Permalink
fix toStrings
Browse files Browse the repository at this point in the history
  • Loading branch information
msbarry committed May 7, 2024
1 parent 49128ed commit 4d2df2a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,10 @@ public int hashCode() {

@Override
public String toString() {
return "Feature[source=" + getSource() + ", source layer=" + getSourceLayer() +
"id=" + id() + ", geometry type=" + latLonGeometry().getGeometryType() + ", " +
"tags=" + tags + ']';
return "Feature[source=" + getSource() +
", source layer=" + getSourceLayer() +
", id=" + id() +
", geometry type=" + latLonGeometry().getGeometryType() +
", tags=" + tags + ']';
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -325,4 +325,12 @@ public boolean hasRelationInfo() {
return relationInfos != null && !relationInfos.isEmpty();
}

@Override
public String toString() {
return "Feature[source=" + getSource() +
", source layer=" + getSourceLayer() +
", id=" + id() +
", tags=" + tags + ']';
}

}

0 comments on commit 4d2df2a

Please sign in to comment.