We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BoundingBox.getWidth()
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring-data-redis/src/main/java/org/springframework/data/redis/domain/geo/BoundingBox.java
Line 73 in 7e1746c
Please fix : public Distance getWidth() { return this.height; }
public Distance getWidth() { return this.height; }
to public Distance getWidth() { return this.width; }
public Distance getWidth() { return this.width; }
The text was updated successfully, but these errors were encountered:
Fix BoundingBox.width return value.
fc9c4d4
We now return the correct value. Closes #2526
c5e389f
56c633c
mp911de
No branches or pull requests
spring-data-redis/src/main/java/org/springframework/data/redis/domain/geo/BoundingBox.java
Line 73 in 7e1746c
Please fix :
public Distance getWidth() { return this.height; }
to
public Distance getWidth() { return this.width; }
The text was updated successfully, but these errors were encountered: