From dbc20a773f79b1ee9719e94354745dc2535b5d1b Mon Sep 17 00:00:00 2001 From: Mathew Inwood Date: Wed, 22 Jan 2020 15:37:25 +0000 Subject: Fix javadoc @link tags on @ChangeId constant. In future, we will generate DAC docs form these javadoc comments. But due to the way that this works, the docs generation loses context of constants in classes that are not part of the SDK, meaning we can't refer to imported classes directly. To keep the links working, class references must be fully qualified. Bug: 144927670 Test: m Change-Id: I059698f224ce060600f69ef6c816d5a81d143968 --- services/core/java/com/android/server/am/OomAdjuster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/am/OomAdjuster.java b/services/core/java/com/android/server/am/OomAdjuster.java index 63331fab4aef..04297828ebfc 100644 --- a/services/core/java/com/android/server/am/OomAdjuster.java +++ b/services/core/java/com/android/server/am/OomAdjuster.java @@ -125,7 +125,7 @@ public final class OomAdjuster { static final String OOM_ADJ_REASON_PROCESS_END = OOM_ADJ_REASON_METHOD + "_processEnd"; /** - * Flag {@link Context#BIND_INCLUDE_CAPABILITIES} is used + * Flag {@link android.content.Context#BIND_INCLUDE_CAPABILITIES} is used * to pass while-in-use capabilities from client process to bound service. In targetSdkVersion * R and above, if client is a TOP activity, when this flag is present, bound service gets all * while-in-use capabilities; when this flag is not present, bound service gets no while-in-use -- cgit v1.2.3-59-g8ed1b