Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/main/java/org/mtransit/commons/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ package org.mtransit.commons
object Constants {

// const val DEBUG = true // DEBUG
const val DEBUG = false
@JvmStatic
val DEBUG = System.getenv("MT_DEBUG") == "mt_true" // DEBUG
// const val DEBUG = false

const val NEW_LINE = '\n'
const val SPACE = ' '
const val COLUMN_SEPARATOR = ','
const val STRING_DELIMITER = '\''
const val EMPTY = ""
const val SPACE_ = " "
}
}
Loading