Skip to content

Commit

Permalink
Fix broken Kokoro.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 330651506
  • Loading branch information
micapolos-google authored and copybara-github committed Sep 9, 2020
1 parent 02de4ab commit 6f5d889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jre_emul/Classes/IOSObjectArray.m
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ + (instancetype)newArrayWithDimensions:(NSUInteger)dimensionCount
}

- (id)objectAtIndex:(NSUInteger)index {
return IOSObjectArray_Get(self, index);
return IOSObjectArray_Get(self, (jint)index);
}

static void ThrowArrayStoreException(IOSObjectArray *array, id value) {
Expand Down

0 comments on commit 6f5d889

Please sign in to comment.