Skip to content

Commit 9695562

Browse files
committed
a javadoc fix for Envelope2D.intersects (issue #59)
1 parent 2e2407e commit 9695562

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/java/com/esri/core/geometry/Envelope2D.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,11 @@ public boolean isIntersectingNE(Envelope2D other) {
272272
}
273273

274274
/**
275-
* Checks if this envelope intersects the other.
276-
* @return True if this envelope intersects the other.
275+
* Intersects this envelope with the other and stores result in this
276+
* envelope.
277+
*
278+
* @return True if this envelope intersects the other, otherwise sets this
279+
* envelope to empty state and returns False.
277280
*/
278281
public boolean intersect(Envelope2D other) {
279282
if (isEmpty() || other.isEmpty())

0 commit comments

Comments
 (0)