Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9c89c81 authored by Nick Kralevich's avatar Nick Kralevich Committed by Gerrit Code Review
Browse files

Merge "gallery: change typo '&&' to '||'"

parents 044648be fe99791c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ public class AlbumSetDataLoader {
    }

    private void assertIsActive(int index) {
        if (index < mActiveStart && index >= mActiveEnd) {
        if (index < mActiveStart || index >= mActiveEnd) {
            throw new IllegalArgumentException(String.format(
                    "%s not in (%s, %s)", index, mActiveStart, mActiveEnd));
        }