Cleaning checkstyle errors from CarDrivingStateEvent

Cleaned the following 8 issues:
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:88:13: '=' should be on the previous line. [OperatorWrap]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:89: 'method def modifier' has incorrect indentation level 8, expected level should be one of the following: 16, 20, 24. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:90: 'method def' child has incorrect indentation level 12, expected level should be one of the following: 20, 24, 28. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:91: 'method def rcurly' has incorrect indentation level 8, expected level should be one of the following: 16, 20, 24. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:93: 'method def modifier' has incorrect indentation level 8, expected level should be one of the following: 16, 20, 24. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:94: 'method def' child has incorrect indentation level 12, expected level should be one of the following: 20, 24, 28. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:95: 'method def rcurly' has incorrect indentation level 8, expected level should be one of the following: 16, 20, 24. [Indentation]
[ERROR] /usr/local/Master/packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java:96: 'object def rcurly' has incorrect indentation level 4, expected level should be one of the following: 12, 16, 20. [Indentation]

Bug: 149600887
Test: java -jar prebuilts/checkstyle/checkstyle.jar packages/services/Car/car-lib/src/android/car/drivingstate/CarDrivingStateEvent.java -c prebuilts/checkstyle/android-style.xml
Change-Id: I6fc50486bc8dfb2dfc158dd2a0d07d2bb720bd2b
Merged-In: I6fc50486bc8dfb2dfc158dd2a0d07d2bb720bd2b
1 file changed
tree: 1bc2eeb02e589e071be89998d3770ae4e00f9bf3
  1. car-bugreportd/
  2. car-default-input-service/
  3. car-internal-lib/
  4. car-lib/
  5. car-maps-placeholder/
  6. car-systemtest-lib/
  7. car-test-lib/
  8. car-usb-handler/
  9. car_product/
  10. computepipe/
  11. EncryptionRunner/
  12. evs/
  13. experimental/
  14. FrameworkPackageStubs/
  15. obd2-lib/
  16. procfs-inspector/
  17. service/
  18. surround_view/
  19. tests/
  20. tools/
  21. user/
  22. vehicle-hal-support-lib/
  23. watchdog/
  24. .clang-format
  25. .gitignore
  26. Android.mk
  27. CleanSpec.mk
  28. CPPLINT.cfg
  29. OWNERS
  30. PREUPLOAD.cfg
  31. README.md
README.md

Native (C++) code format is required to be compatible with .clang-format file. Run

git clang-format --style=file --extension='h,cpp,cc' HEAD~

Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.