From e00977e4ccde5c34f3f86eec204c904c00fbec5b Mon Sep 17 00:00:00 2001 From: Nathan Harold Date: Thu, 19 Mar 2020 11:20:47 -0700 Subject: [PATCH] Remove FIXME that getApnSetting should be NonNull API Council has asked that I remove a comment suggesting that this API be NonNull. While in theory, we should be able to make this NonNull in the future, the tooling doesn't work in a way that makes such a change beneficial. Bug: 151928851 Test: compilation (comment-only change) Merged-In: Ifd80f2859e4a090225aab1b3a483325d654a2412 Change-Id: Ifd80f2859e4a090225aab1b3a483325d654a2412 (cherry picked from commit 4005f21d68df33d87ee056a1d6df25e28624e77f) --- telephony/java/android/telephony/PreciseDataConnectionState.java | 1 - 1 file changed, 1 deletion(-) diff --git a/telephony/java/android/telephony/PreciseDataConnectionState.java b/telephony/java/android/telephony/PreciseDataConnectionState.java index 708adebb6db34..bb92e913eb1de 100644 --- a/telephony/java/android/telephony/PreciseDataConnectionState.java +++ b/telephony/java/android/telephony/PreciseDataConnectionState.java @@ -267,7 +267,6 @@ public final class PreciseDataConnectionState implements Parcelable { * * @return the ApnSetting that was used to configure this data connection. */ - // FIXME: This shouldn't be nullable; update once the ApnSetting is supplied correctly public @Nullable ApnSetting getApnSetting() { return mApnSetting; }