Remove System.arraycopy(byte[]... from API

Remove the System.arraycopy(byte[]... overload from
the CorePlatformApi. Since this is the only method
in System that needs an annotation we can delete
the System.annotated.java file entirely.

This is a symptom of static method resolution in the
compiler leading to bytecode dependencies on the overload.

All code newly compiled against stubs shouldn't care - the
Object version will delegate through. If we make it
part of the CorePlatformApi we may never get rid of
it.

Bug: 113148576
Bug: 74103559
Test: build only
Change-Id: I3371cffe4a74b41f27632435c7b24d21639a5399
1 file changed