Remove redundant NOTICE copied from LICENSE.

Identified using the below shell script:

$ find -H . -name LICENSE -type f -print0 | xargs -0 dirname \
  | while read dir; do \
    if [ -f "${dir}/NOTICE" ] \
        && diff "${dir}/LICENSE" "${dir}/NOTICE" >/dev/null; then \
      echo "${dir}/NOTICE"; \
    fi; \
  done

Now that http://r.android.com/r/1235427 and http://r.android.com/r/1238719 are
merged, LICENSE files copied into NOTICE files are no longer needed.

Bug: 67772237
Bug: 68860345

Test: manually built and diffed before and after system image notices
Change-Id: I324b4f970e0841991227af62da560930ca748900
1 file changed
tree: 0e3fe3d5e21c5c3722bbec59cd1948f5f1e2f80e
  1. gradle/
  2. src/
  3. .gitignore
  4. .travis.yml
  5. Android.bp
  6. bintray.gradle
  7. build.gradle
  8. consumer-proguard-rules.pro
  9. CONTRIBUTING.md
  10. gradle.properties
  11. gradlew
  12. gradlew.bat
  13. LICENSE
  14. MODULE_LICENSE_APACHE2
  15. OWNERS
  16. publish-snapshot-on-commit.sh
  17. README.md
  18. rules.gradle
README.md

Volley

Volley is an HTTP library that makes networking for Android apps easier and, most importantly, faster.

For more information about Volley and how to use it, visit the Android developer training page.