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
This commit is contained in:
Tor Norbye
2013-12-17 19:43:59 -08:00
parent 0e50260175
commit 09ace69a89

View File

@@ -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);