Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c34ee69 authored by Tor Norbye's avatar Tor Norbye Committed by Android (Google) Code Review
Browse files

Merge "Hide NonNull and Nullable."

parents ffb96bf3 bbc75f34
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -2682,12 +2682,6 @@ package android.animation {
package android.annotation {
  public abstract class NonNull implements java.lang.annotation.Annotation {
  }
  public abstract class Nullable implements java.lang.annotation.Annotation {
  }
  public abstract class SuppressLint implements java.lang.annotation.Annotation {
  }
+2 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@ import static java.lang.annotation.RetentionPolicy.SOURCE;
 * Denotes that a parameter, field or method return value can never be null.
 * <p>
 * This is a marker annotation and it has no specific attributes.
 *
 * @hide
 */
@Retention(SOURCE)
@Target({METHOD, PARAMETER, FIELD})
+2 −0
Original line number Diff line number Diff line
@@ -34,6 +34,8 @@ import static java.lang.annotation.RetentionPolicy.SOURCE;
 * null.
 * <p>
 * This is a marker annotation and it has no specific attributes.
 *
 * @hide
 */
@Retention(SOURCE)
@Target({METHOD, PARAMETER, FIELD})