Merge "Switch else case to null in when expression to make it exhaustive" am: 83026726de

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2200210

Change-Id: I3aa75a986f55269dc33a384602062fb7318fed53
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Colin Cross
2022-09-02 14:50:07 +00:00
committed by Automerger Merge Worker

View File

@@ -628,7 +628,7 @@ class SystemStubMultiUserDisableUninstallTest : BaseHostJUnit4Test() {
CodePath.SAME, CodePath.DIFFERENT -> CodePath.SAME, CodePath.DIFFERENT ->
throw AssertionError("secondDataPath cannot be a data path") throw AssertionError("secondDataPath cannot be a data path")
CodePath.SYSTEM -> assertThat(codePaths[1]).isEqualTo(stubFile.parent.toString()) CodePath.SYSTEM -> assertThat(codePaths[1]).isEqualTo(stubFile.parent.toString())
else -> {} null -> {}
} }
} }