Skip to content

Commit

Permalink
Address code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DzmitryFomchyn committed Feb 26, 2024
1 parent a270495 commit b96861c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion changelog/unreleased/bugfixes/7753.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Fix adasis generator errors related to the split edges.
- Fix adas cache tiles eviction mechanism.
- Handle "unlilimited" speed limits in Adasis.
- Handle "unlilimited" speed limits in Adasis.
- Fixed possible `java.lang.UnsatisfiedLinkError` crash on application startup when Mapbox native libraries could not yet be found.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class AdasisDataSendingConfig private constructor(
"messagesInPackage=$messagesInPackage, " +
"metadataCycleSeconds=$metadataCycleSeconds, " +
"enableRetransmission=$enableRetransmission, " +
"retransmissionMeters=$retransmissionMeters," +
"retransmissionMeters=$retransmissionMeters, " +
"treeTrailingLength=$treeTrailingLength" +
")"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.mapbox.navigation.core.internal

import android.content.Context
import androidx.startup.Initializer
import com.mapbox.common.MapboxSDKCommonInitializer
import com.mapbox.common.MapboxSDKCommonInitializerImpl
import com.mapbox.common.SdkInfoRegistryFactory
import com.mapbox.common.SdkInformation
import com.mapbox.navigation.core.BuildConfig
Expand All @@ -22,6 +22,6 @@ class MapboxNavigationSDKInitializerImpl : Initializer<MapboxNavigationSDK> {
}

override fun dependencies(): MutableList<Class<out Initializer<*>>> {
return mutableListOf(MapboxSDKCommonInitializer::class.java)
return mutableListOf(MapboxSDKCommonInitializerImpl::class.java)
}
}

0 comments on commit b96861c

Please sign in to comment.