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: I3022ea668f363c1684eaaebe5ac1a25df4d24c7a
1 file changed
tree: 0af4902b1e4ea20e086233aa73a5cb622b716d79
  1. include/
  2. src/
  3. Android.bp
  4. LICENSE
  5. MODULE_LICENSE_MIT
  6. OWNERS