Skip to content

Commit b990893

Browse files
jsharkeyAndroid (Google) Code Review
authored andcommitted
Merge "Make component names visible in javadoc."
2 parents 9766937 + 5554b70 commit b990893

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/java/android/app/Activity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4656,7 +4656,7 @@ public View onCreateView(View parent, String name, Context context, AttributeSet
46564656

46574657
/**
46584658
* Print the Activity's state into the given stream. This gets invoked if
4659-
* you run "adb shell dumpsys activity <activity_component_name>".
4659+
* you run "adb shell dumpsys activity &lt;activity_component_name&gt;".
46604660
*
46614661
* @param prefix Desired prefix to prepend at each line of output.
46624662
* @param fd The raw file descriptor that the dump is being sent to.

core/java/android/app/Service.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,8 +666,8 @@ public final void stopForeground(boolean removeNotification) {
666666

667667
/**
668668
* Print the Service's state into the given stream. This gets invoked if
669-
* you run "adb shell dumpsys activity service <yourservicename>".
670-
* This is distinct from "dumpsys <servicename>", which only works for
669+
* you run "adb shell dumpsys activity service &lt;yourservicename&gt;".
670+
* This is distinct from "dumpsys &lt;servicename&gt;", which only works for
671671
* named system services and which invokes the {@link IBinder#dump} method
672672
* on the {@link IBinder} interface registered with ServiceManager.
673673
*

core/java/android/content/ContentProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ public void shutdown() {
11271127

11281128
/**
11291129
* Print the Provider's state into the given stream. This gets invoked if
1130-
* you run "adb shell dumpsys activity provider <provider_component_name>".
1130+
* you run "adb shell dumpsys activity provider &lt;provider_component_name&gt;".
11311131
*
11321132
* @param prefix Desired prefix to prepend at each line of output.
11331133
* @param fd The raw file descriptor that the dump is being sent to.

0 commit comments

Comments
 (0)