Skip to content

Commit

Permalink
CloudEndpointUtils: ignore warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
UweTrottmann committed Dec 1, 2023
1 parent 319be5b commit 353452d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ object CloudEndpointUtils {
/**
* Change this to 'true' if you're running your backend locally using the DevAppServer.
*/
@Suppress("SimplifyBooleanWithConstants")
@Suppress("SimplifyBooleanWithConstants", "KotlinConstantConditions")
private val USE_LOCAL_VERSION = false && BuildConfig.DEBUG

@Suppress("SimplifyBooleanWithConstants")
@Suppress("SimplifyBooleanWithConstants", "KotlinConstantConditions")
private val USE_STAGING_VERSION = false && BuildConfig.DEBUG

private const val ROOT_URL_STAGING = "https://staging-dot-optical-hexagon-364.appspot.com"
Expand Down

0 comments on commit 353452d

Please sign in to comment.