Fix one more javadoc error for Java 8

This commit is contained in:
Sean Owen 2014-03-25 18:27:02 +00:00
parent fabd9f6473
commit 0a65882eda

View file

@ -52,9 +52,9 @@ public final class Contents {
/**
* A contact. Send a request to encode it as follows:
* <p/>
* {@code
* import android.provider.Contacts;
* <p/>
*
* Intent intent = new Intent(Intents.Encode.ACTION);
* intent.putExtra(Intents.Encode.TYPE, CONTACT);
* Bundle bundle = new Bundle();
@ -63,6 +63,7 @@ public final class Contents {
* bundle.putString(ContactsContract.Intents.Insert.EMAIL, "jenny@the80s.com");
* bundle.putString(ContactsContract.Intents.Insert.POSTAL, "123 Fake St. San Francisco, CA 94102");
* intent.putExtra(Intents.Encode.DATA, bundle);
* }
*/
public static final String CONTACT = "CONTACT_TYPE";