Skip to content

Commit aa0a453

Browse files
committed
DO NOT MERGE: Make component names visible in javadoc.
Change-Id: I3770ea6616b8425c387bcd27d668e3114b14335d
1 parent a589487 commit aa0a453

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/java/android/app/Activity.java

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

42784278
/**
42794279
* Print the Activity's state into the given stream. This gets invoked if
4280-
* you run "adb shell dumpsys activity <activity_component_name>".
4280+
* you run "adb shell dumpsys activity &lt;activity_component_name&gt;".
42814281
*
42824282
* @param prefix Desired prefix to prepend at each line of output.
42834283
* @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
@@ -654,8 +654,8 @@ public final void stopForeground(boolean removeNotification) {
654654

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

0 commit comments

Comments
 (0)