Remove unused DeprecatedForSdk

It is not used and does not appear to have ever been used. It requires
special support in Metalava which adds to the cost of maintenance so
removing it will save time that is better spent improving Metalava.

Flag: EXEMPT removing unused code
Bug: 398307640
Test: TH
Change-Id: Ia575e95868f4d300fb626d14e44dcd00e8ac7bbd
1 file changed
tree: 283d21c4b946bc54f315acf225d9accc9e3c0764
  1. build/
  2. java/
  3. javatests/
  4. tools/
  5. .gitignore
  6. Android.bp
  7. OWNERS
  8. PREUPLOAD.cfg
  9. README.md
  10. 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.