Skip to content

Commit

Permalink
Format with ktfmt-gradle 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gino-m committed Apr 30, 2024
1 parent e6a4974 commit ea60727
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ground/src/main/java/com/google/android/ground/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ object Config {

fun getMogSources(path: String) =
listOf(
MogSource(0..<DEFAULT_MOG_MIN_ZOOM, "$path/$DEFAULT_MOG_MIN_ZOOM/overview.tif"),
MogSource(0 ..< DEFAULT_MOG_MIN_ZOOM, "$path/$DEFAULT_MOG_MIN_ZOOM/overview.tif"),
MogSource(
DEFAULT_MOG_MIN_ZOOM..DEFAULT_MOG_MAX_ZOOM,
"$path/$DEFAULT_MOG_MIN_ZOOM/{x}/{y}.tif",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ import com.google.android.ground.ui.common.Navigator
import com.google.android.ground.ui.common.ProgressDialogs.modalSpinner
import com.google.android.ground.ui.common.ViewModelFactory
import dagger.hilt.android.AndroidEntryPoint
import javax.inject.Inject
import kotlinx.coroutines.launch
import timber.log.Timber
import javax.inject.Inject

/**
* The app's main activity. The app consists of multiples Fragments that live under this activity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ import com.google.firebase.firestore.WriteBatch
import com.google.firebase.functions.FirebaseFunctions
import com.google.firebase.ktx.Firebase
import com.google.firebase.messaging.ktx.messaging
import javax.inject.Inject
import javax.inject.Singleton
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.emitAll
Expand All @@ -40,8 +42,6 @@ import kotlinx.coroutines.flow.map
import kotlinx.coroutines.tasks.await
import kotlinx.coroutines.withContext
import timber.log.Timber
import javax.inject.Inject
import javax.inject.Singleton

const val PROFILE_REFRESH_CLOUD_FUNCTION_NAME = "profile-refresh"

Expand Down

0 comments on commit ea60727

Please sign in to comment.