From a6fb22c67fa266ce7872bb446d10366aba530ef1 Mon Sep 17 00:00:00 2001 From: tonihei Date: Wed, 19 Feb 2020 12:11:53 +0000 Subject: [PATCH] Add missing package-info.java All packages that are not in a test directory (or a demo app) should have the non-null-by-default annotation. Add the remaining ones. PiperOrigin-RevId: 295938504 --- .../exoplayer2/ext/gvr/package-info.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 extensions/gvr/src/main/java/com/google/android/exoplayer2/ext/gvr/package-info.java diff --git a/extensions/gvr/src/main/java/com/google/android/exoplayer2/ext/gvr/package-info.java b/extensions/gvr/src/main/java/com/google/android/exoplayer2/ext/gvr/package-info.java new file mode 100644 index 0000000000..155317fc29 --- /dev/null +++ b/extensions/gvr/src/main/java/com/google/android/exoplayer2/ext/gvr/package-info.java @@ -0,0 +1,19 @@ +/* + * Copyright (C) 2020 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@NonNullApi +package com.google.android.exoplayer2.ext.gvr; + +import com.google.android.exoplayer2.util.NonNullApi;