Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasGorisse committed Jul 18, 2021
1 parent 162134e commit c9d66a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/com/google/ar/sceneform/ArSceneView.java
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ public boolean hasTrackedPlane() {
* Retrieve the view session tracked planes.
*/
public Collection<Plane> getAllPlanes() {
return getAllPlanes(null);
return getAllPlanes((TrackingState[]) null);
}

/**
Expand All @@ -811,7 +811,7 @@ public Collection<Plane> getAllPlanes(@Nullable TrackingState... trackingStates)
* Retrieve the view last frame tracked planes.
*/
public Collection<Plane> getUpdatedPlanes() {
return getUpdatedPlanes(null);
return getUpdatedPlanes((TrackingState[]) null);
}

/**
Expand Down

0 comments on commit c9d66a6

Please sign in to comment.