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

Commit 71f6426a authored by Dave Burke's avatar Dave Burke Committed by Android (Google) Code Review
Browse files

Merge "Add nullness check." into jb-mr2-dev

parents 0841c4cb c9b6be7c
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();
    }