Merge "Switch else case to null in when expression to make it exhaustive"

This commit is contained in:
Colin Cross
2022-09-02 14:16:36 +00:00
committed by Gerrit Code Review

View File

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