Fix indentation in TestableDeviceConfig.

This is in preparation for CLs in AOSP that will sync DeviceConfig from
internal master/tm-dev into aosp/master.

Ignore-AOSP-First: AOSP is already out of sync. Making the changes here
first and then will sync to AOSP with a Merged-In tag to get around merge conflicts.
Bug: 226423598
Test: Treehugger

Change-Id: Ia1fa9a9f119c3fae469e1bf71fa2d9bafe93d0df
1 file changed
tree: 10940d50a391bc627c70d0d46a95c1391d9a283f
  1. build/
  2. java/
  3. javatests/
  4. tools/
  5. Android.bp
  6. OWNERS
  7. PREUPLOAD.cfg
  8. README.md
  9. TEST_MAPPING
README.md

frameworks/libs/modules-utils/

Libraries and utilities intended for use by module and framework code.

Since modules use the code in this project, it must adhere to mainline requirements, for example, by setting min_sdk_version in Soong modules.

Java code

This project uses a single source path for Java code. All Java code should go in the java directory with subdirectories corresponding to the java package. Android.bp files should go alongside the java source files, and should only include java source for a single java package to encourage good code hygiene.

Tests for java code should go in the javatests directory and follow the same structure.