Skip to content

Commit

Permalink
[UPDATE] Applied formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
hossain-khan committed Mar 20, 2024
1 parent f3ff584 commit 1d5b69a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 5 additions & 2 deletions parser/src/main/kotlin/model/Records.kt
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,10 @@ enum class ActivityType(val title: String) {
ON_FOOT("The device is on a user who is walking or running."),
RUNNING("The device is on a user who is running."),
STILL("The device is still (not moving)."),
TILTING("The device angle relative to gravity changed significantly. This often occurs when a device is picked up from a desk or a user who is sitting stands up."),
TILTING(
"The device angle relative to gravity changed significantly. " +
"This often occurs when a device is picked up from a desk or a user who is sitting stands up.",
),
WALKING("The device is on a user who is walking."),
UNKNOWN("Unable to detect the current activity.")
UNKNOWN("Unable to detect the current activity."),
}
3 changes: 1 addition & 2 deletions parser/src/main/kotlin/model/Semantic.kt
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,6 @@ data class Waypoint(
val lngE7: Int,
)


enum class SemanticActivityType(val title: String) {
BOATING("Boating"),
CATCHING_POKEMON("Catching Pokémon"),
Expand Down Expand Up @@ -895,5 +894,5 @@ enum class Confidence {
LOW,
MEDIUM,
HIGH,
UNKNOWN_CONFIDENCE
UNKNOWN_CONFIDENCE,
}

0 comments on commit 1d5b69a

Please sign in to comment.