Skip to content

Upgrade guava #146

New issue

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

Merged
merged 2 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading