13e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao/*
23e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * Copyright (C) 2012 The Android Open Source Project
33e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao *
43e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * Licensed under the Apache License, Version 2.0 (the "License");
53e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * you may not use this file except in compliance with the License.
63e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * You may obtain a copy of the License at
73e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao *
83e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao *      http://www.apache.org/licenses/LICENSE-2.0
93e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao *
103e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * Unless required by applicable law or agreed to in writing, software
113e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * distributed under the License is distributed on an "AS IS" BASIS,
123e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * See the License for the specific language governing permissions and
143e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * limitations under the License.
153e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao */
163e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao
173e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao/**
183e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao * This class and method will be overwritten by smali to return non-null.
193e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao */
203e96a16c27c986275f60afe682d0b2a3064f45c9jeffhaopublic class Test {
213e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao    public static Object run() {
223e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao        return null;
233e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao    }
243e96a16c27c986275f60afe682d0b2a3064f45c9jeffhao}
25