Skip to content

Commit

Permalink
Fix toString function's indentation of LimitedAxesGyroscopeSensorState
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghmutualmobile committed Apr 20, 2023
1 parent 6c9f46b commit 56c0c8f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ class LimitedAxesGyroscopeSensorState internal constructor(
}

override fun toString(): String {
return "LimitedAxesGyroscopeSensorState(xRotation=$xRotation, yRotation=$yRotation, zRotation=$zRotation, xAxisSupported=$xAxisSupported, yAxisSupported=$yAxisSupported, zAxisSupported=$zAxisSupported, isAvailable=$isAvailable, accuracy=$accuracy)"
return "LimitedAxesGyroscopeSensorState(xRotation=$xRotation, yRotation=$yRotation, " +
"zRotation=$zRotation, xAxisSupported=$xAxisSupported, " +
"yAxisSupported=$yAxisSupported, zAxisSupported=$zAxisSupported, " +
"isAvailable=$isAvailable, accuracy=$accuracy)"
}
}

Expand Down

0 comments on commit 56c0c8f

Please sign in to comment.