Commit 8449e7f4 by olly Committed by Oliver Woodman

Add stubs for onCreate() and onPostCreate()

PiperOrigin-RevId: 235541545
parent 8edecd5c
......@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.ext.gvr;
import android.content.Context;
......@@ -68,10 +69,8 @@ public abstract class GvrPlayerActivity extends GvrActivity {
mainHandler = new Handler(Looper.getMainLooper());
}
// TODO(b/124903498): Incompatible parameter type for savedInstanceState.
@SuppressWarnings("nullness:override.param.invalid")
@Override
protected void onCreate(Bundle savedInstanceState) {
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setScreenAlwaysOn(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment