Skip to content

Commit 6418371

Browse files
committed
android-helloworld: Remove usage of ActionBarActivity
ActionBarActivity has been deprecated for 2+ years and has been extending AppCompatActivity for all that time. This should be a no-op.
1 parent e6804e2 commit 6418371

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/HelloworldActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import android.content.Context;
3535
import android.os.AsyncTask;
3636
import android.os.Bundle;
37-
import android.support.v7.app.ActionBarActivity;
37+
import android.support.v7.app.AppCompatActivity;
3838
import android.text.TextUtils;
3939
import android.text.method.ScrollingMovementMethod;
4040
import android.view.View;
@@ -53,7 +53,7 @@
5353
import java.io.StringWriter;
5454
import java.util.concurrent.TimeUnit;
5555

56-
public class HelloworldActivity extends ActionBarActivity {
56+
public class HelloworldActivity extends AppCompatActivity {
5757
private Button mSendButton;
5858
private EditText mHostEdit;
5959
private EditText mPortEdit;

0 commit comments

Comments
 (0)