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

Commit e1fe4fa4 authored by Conley Owens's avatar Conley Owens Committed by Android Git Automerger
Browse files

am 6a53bd9d: am 69d28437: Merge "RRO tests: fix potential NPE"

* commit '6a53bd9d':
  RRO tests: fix potential NPE
parents ea796d70 6a53bd9d
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -225,9 +225,13 @@ public abstract class OverlayBaseTest extends AndroidTestCase {
            reader = new BufferedReader(new InputStreamReader(input));
            actual = reader.readLine();
        } finally {
            if (reader != null) {
                reader.close();
            }
            if (input != null) {
                input.close();
            }
        }

        final String no = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, " +
            "sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +