summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2020-10-05 21:02:26 +0000
committer Steven Moreland <smoreland@google.com> 2020-10-05 21:04:27 +0000
commit0acafec609b6ec1f2bb3d3dffc9e06618053f33f (patch)
tree25f6877b7b3de03a5040f8c53e99e11dcb1b31e4
parent3988cce368be8d016097d95e9c2ff76ce578adf4 (diff)
incremental: Move AIDL file to declared package.
There was a regression in the AIDL compiler recently that removed the requirement that, like in Java, .aidl unstructured parcelables (these parcelable declarations) are in directories and files which match their packages and file names. This CL moves relevant files to the correct directory required by their type. Bug: N/A Test: build Change-Id: I5fd112f1bcd0d1fc3be3c8dc7f1959242d43858e
-rw-r--r--core/java/android/content/pm/IncrementalStatesInfo.aidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/pm/IncrementalStatesInfo.aidl b/core/java/android/content/pm/IncrementalStatesInfo.aidl
index b5aad1269c60..7064fbfa8b6a 100644
--- a/core/java/android/content/pm/IncrementalStatesInfo.aidl
+++ b/core/java/android/content/pm/IncrementalStatesInfo.aidl
@@ -15,6 +15,6 @@
** limitations under the License.
*/
-package com.android.server.pm;
+package android.content.pm;
-parcelable IncrementalStatesInfo; \ No newline at end of file
+parcelable IncrementalStatesInfo;