From 09ace69a89cff377069a85602684b273a0aa4da1 Mon Sep 17 00:00:00 2001 From: Tor Norbye Date: Tue, 17 Dec 2013 19:43:59 -0800 Subject: [PATCH] Remove Nullable annotation The one in the framework is being hidden; for app usage we're adding one in the support library. Change-Id: I5612579b4d282e78d592d36bd35d51d28cf82b37 --- .../example/android/apis/animation/PathLengthAnimation.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/ApiDemos/src/com/example/android/apis/animation/PathLengthAnimation.java b/samples/ApiDemos/src/com/example/android/apis/animation/PathLengthAnimation.java index 0366d740a..08181b7ef 100644 --- a/samples/ApiDemos/src/com/example/android/apis/animation/PathLengthAnimation.java +++ b/samples/ApiDemos/src/com/example/android/apis/animation/PathLengthAnimation.java @@ -17,7 +17,6 @@ package com.example.android.apis.animation; import android.animation.ObjectAnimator; import android.animation.ValueAnimator; -import android.annotation.Nullable; import android.app.Activity; import android.graphics.Paint; import android.graphics.Path; @@ -56,7 +55,7 @@ public class PathLengthAnimation extends Activity { private float mTrimOffset = 0; @Override - protected void onCreate(@Nullable Bundle savedInstanceState) { + protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ImageView view = new ImageView(this); setContentView(view);