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

Commit 1976dd91 authored by Dave Burke's avatar Dave Burke Committed by Android Git Automerger
Browse files

am 71f6426a: Merge "Add nullness check." into jb-mr2-dev

* commit '71f6426a':
  Add nullness check.
parents 0e5b5f66 71f6426a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -117,6 +117,9 @@ public class ExifInterface {
     * Reads Exif tags from the specified JPEG file.
     */
    public ExifInterface(String filename) throws IOException {
        if (filename == null) {
            throw new IllegalArgumentException("filename cannot be null");
        }
        mFilename = filename;
        loadAttributes();
    }