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

Commit 8eef13b4 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Refrain warning when not appropriate. Do not merge

Change-Id: I0066a3d0a2204cfc4beacb69aafccb35b9326bbb
parent 624380a1
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -133,9 +133,11 @@ public class VCardBuilder {
    public VCardBuilder(final int vcardType, String charset) {
        mVCardType = vcardType;

        if (VCardConfig.isVersion40(vcardType)) {
            Log.w(LOG_TAG,
                    "Should not use vCard 4.0 when building vCard. " +
                    "It is not officially published yet.");
        }

        mIsV30OrV40 = VCardConfig.isVersion30(vcardType) || VCardConfig.isVersion40(vcardType);
        mShouldUseQuotedPrintable = VCardConfig.shouldUseQuotedPrintable(vcardType);