Skip to content

Commit 09401e7

Browse files
committed
refactor: minor changes to comments and a fix to use the correct Google truth dependency
1 parent 3c0fcf9 commit 09401e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies {
6969
testImplementation(libs.kxml2)
7070
testImplementation(libs.mockk)
7171
testImplementation(libs.kotlin.test)
72-
testImplementation("com.google.truth:truth:1.1.3")
72+
testImplementation(libs.truth)
7373
implementation(libs.kotlin.stdlib.jdk8)
7474
}
7575

library/src/test/java/com/google/maps/android/PolyUtilTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,10 +572,10 @@ public void testIsClosedPolygon() {
572572
/**
573573
* The following method checks whether {@link PolyUtil#distanceToLine(LatLng, LatLng, LatLng) distanceToLine()} }
574574
* is determining the distance between a point and a segment accurately.
575-
*
575+
* <p>
576576
* Currently there are tests for different orders of magnitude (i.e., 1X, 10X, 100X, 1000X), as well as a test
577577
* where the segment and the point lie in different hemispheres.
578-
*
578+
* <p>
579579
* If further tests need to be added here, make sure that the distance has been verified with <a href="https://www.qgis.org/">QGIS</a>.
580580
*
581581
* @see <a href="https://www.qgis.org/">QGIS</a>

0 commit comments

Comments
 (0)