[android] Review fixes

This commit is contained in:
Roman Romanov 2016-11-02 08:02:08 +04:00 committed by Ilya Grechuhin
parent 3363aff467
commit 400165d181

View file

@ -670,9 +670,9 @@ Java_com_mapswithme_maps_Framework_nativeGetDistanceAndAzimuthFromLatLon(
JNIEXPORT jobject JNICALL
Java_com_mapswithme_maps_Framework_nativeFormatLatLon(JNIEnv * env, jclass, jdouble lat, jdouble lon, jboolean useDMSFormat)
{
return jni::ToJavaString(env,
(useDMSFormat ? measurement_utils::FormatLatLonAsDMS(lat, lon, 2)
: measurement_utils::FormatLatLon(lat, lon, true, 6)));
return jni::ToJavaString(
env, (useDMSFormat ? measurement_utils::FormatLatLonAsDMS(lat, lon, 2)
: measurement_utils::FormatLatLon(lat, lon, true /* withSemicolon */, 6)));
}
JNIEXPORT jobjectArray JNICALL