Skip to content

Commit ab101ee

Browse files
committed
fix: java format
1 parent c9c8e26 commit ab101ee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

android/src/main/java/com/google/android/react/navsdk/NavModule.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -756,14 +756,16 @@ private void registerLocationListener() {
756756
@Override
757757
public void onLocationChanged(final Location location) {
758758
if (mIsListeningRoadSnappedLocation) {
759-
sendCommandToReactNative("onLocationChanged", ObjectTranslationUtil.getMapFromLocation(location));
759+
sendCommandToReactNative(
760+
"onLocationChanged", ObjectTranslationUtil.getMapFromLocation(location));
760761
}
761762
}
762763

763764
@Override
764765
public void onRawLocationUpdate(final Location location) {
765766
if (mIsListeningRoadSnappedLocation) {
766-
sendCommandToReactNative("onRawLocationChanged", ObjectTranslationUtil.getMapFromLocation(location));
767+
sendCommandToReactNative(
768+
"onRawLocationChanged", ObjectTranslationUtil.getMapFromLocation(location));
767769
}
768770
}
769771
};

0 commit comments

Comments
 (0)