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

Commit 07fb33ef authored by Daisuke Miyakawa's avatar Daisuke Miyakawa Committed by Android Git Automerger
Browse files

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

Merge commit 'd8f1a540' into gingerbread-plus-aosp

* commit 'd8f1a540':
  Refrain warning when not appropriate. Do not merge
parents ac754073 d8f1a540
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);