Merge "Refrain warning when not appropriate. Do not merge" into gingerbread
This commit is contained in:
committed by
Android (Google) Code Review
commit
d8f1a54016
@@ -133,9 +133,11 @@ public class VCardBuilder {
|
||||
public VCardBuilder(final int vcardType, String charset) {
|
||||
mVCardType = vcardType;
|
||||
|
||||
Log.w(LOG_TAG,
|
||||
"Should not use vCard 4.0 when building vCard. " +
|
||||
"It is not officially published yet.");
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user