am d8f1a540: Merge "Refrain warning when not appropriate. Do not merge" into gingerbread
Merge commit 'd8f1a540162e16d88cae9a1e8ec58cba68adf6e2' into gingerbread-plus-aosp * commit 'd8f1a540162e16d88cae9a1e8ec58cba68adf6e2': Refrain warning when not appropriate. Do not merge
This commit is contained in:
@@ -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