Skip to content

Array: Remove asserts from getters

Albert Astals Cid requested to merge aacid/poppler:master into master

Callers of getters already have to check the Object returned from get() is of the type they expect before using it.

Since when an index is out of bounds we return a null object that same check is valid for checking the bounds too without having to have an extra check before the get() call

Merge request reports