Merge "Fix getIndex impl to return mIndex" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-04-08 06:05:39 +00:00
committed by Android (Google) Code Review

View File

@@ -275,7 +275,7 @@ public final class FontFamilyUpdateRequest {
* Returns the index of collection
*/
public @IntRange(from = 0) int getIndex() {
return 0;
return mIndex;
}
}