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

Commit 1f17ddfc authored by Dave Burke's avatar Dave Burke Committed by Android Git Automerger
Browse files

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

* commit '1976dd91':
  Add nullness check.
parents 6d190338 1976dd91
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();
    }