Fix build.

Change-Id: I9e887aacf3d3ba642df287dfdecbc2ff1ef02033
This commit is contained in:
Dianne Hackborn
2010-08-15 18:03:27 -07:00
parent def1537e9e
commit 3f00be5bd0
2 changed files with 3 additions and 3 deletions

View File

@ -409,14 +409,14 @@ public class Fragment implements ComponentCallbacks, OnCreateContextMenuListener
}
/**
* Return the target fragment set by {@link #setTargetFragment(Fragment)}.
* Return the target fragment set by {@link #setTargetFragment}.
*/
final public Fragment getTargetFragment() {
return mTarget;
}
/**
* Return the target request code set by {@link #setTargetFragment(Fragment)}.
* Return the target request code set by {@link #setTargetFragment}.
*/
final public int getTargetRequestCode() {
return mTargetRequestCode;

View File

@ -802,7 +802,7 @@ public abstract class ContentProvider implements ComponentCallbacks {
* @param uri The data in the content provider being queried.
* @param mimeTypeFilter The type of data the client desires. May be
* a pattern, such as *\/* to retrieve all possible data types.
* @returns Returns null if there are no possible data streams for the
* @return Returns null if there are no possible data streams for the
* given mimeTypeFilter. Otherwise returns an array of all available
* concrete MIME types.
*