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

Commit 4a4b6e0d authored by Daisuke Miyakawa's avatar Daisuke Miyakawa Committed by Android (Google) Code Review
Browse files

Merge "Handle null correctly."

parents b9c56e39 9030dd12
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -110,11 +110,11 @@ public class VCardParser_V21 extends VCardParser {
    private long mTimeHandleBase64;

    public VCardParser_V21() {
        this(VCardConfig.PARSE_TYPE_UNKNOWN);
        this(null);
    }

    public VCardParser_V21(VCardSourceDetector detector) {
        this(detector.getEstimatedType());
        this(detector != null ? detector.getEstimatedType() : VCardConfig.PARSE_TYPE_UNKNOWN);
    }

    public VCardParser_V21(int parseType) {