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

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

Merge "Refrain warning when not appropriate. Do not merge" into gingerbread

parents b58b2714 8eef13b4
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);