Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bailuk committed Apr 12, 2024
1 parent 91c840f commit 21e9cd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class MockLocation(c: Context, next: LocationStackItem) : LocationStackChainedIt
private fun sendLocation(): Boolean {
val currentNode = node
if (currentNode != null) {
passLocation(MockLocationInformation(file, state, node))
passLocation(MockLocationInformation(file, state, currentNode))

val nextNode = currentNode.next
if (nextNode is GpxPointNode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class EditorOrBackupSource(appContext: AppContext, source: ContentSourceInterfac
}
}

override fun setTarget( target: OnContentUpdatedInterface) {
override fun setTarget(target: OnContentUpdatedInterface) {
editorSource.setTarget(target)
backupSource.setTarget(target)
}
Expand Down

0 comments on commit 21e9cd5

Please sign in to comment.