Skip to content

Commit

Permalink
Upgrade guava (#146)
Browse files Browse the repository at this point in the history
* Upgrade Guava to latest

* update formatter
  • Loading branch information
isaacbrodsky committed Aug 11, 2024
1 parent df1d71d commit 2b6a6ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.16</version>
<version>2.23</version>
<executions>
<execution>
<phase>validate</phase>
Expand Down Expand Up @@ -187,7 +187,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.0-jre</version>
<version>33.2.1-jre</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/uber/h3core/H3Core.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class H3Core {
private static final long H3_RES_OFFSET = 52L;
private static final long H3_RES_MASK = 0xfL << H3_RES_OFFSET;
private static final long H3_RES_MASK_NEGATIVE = ~H3_RES_MASK;

/**
* Mask for the indexing digits in an H3 index.
*
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/uber/h3core/util/CoordIJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
public class CoordIJ {
/** I coordinate */
public final int i;

/** J coordinate */
public final int j;

Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/uber/h3core/util/LatLng.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
public class LatLng {
/** Latitude (north-south) coordinate in degrees */
public final double lat;

/** Longitude (east-west) coordinate in degrees */
public final double lng;

Expand Down

0 comments on commit 2b6a6ca

Please sign in to comment.