refactor(android): remove unreachable motion classify branch

This commit is contained in:
Ayaan Zaidi 2026-02-28 09:20:03 +05:30 committed by Ayaan Zaidi
parent 943dce37be
commit 18e7938dfd
1 changed files with 1 additions and 2 deletions

View File

@ -217,8 +217,7 @@ private object SystemMotionDataSource : MotionDataSource {
return when {
averageDelta <= 0.55 -> "stationary"
averageDelta <= 1.80 -> "walking"
averageDelta > 1.80 -> "running"
else -> "unknown"
else -> "running"
}
}