Преглед на файлове

ProfileActivity: Make local variables final

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
master
Samuel Holland преди 7 години
родител
ревизия
4c96e55b49
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. +2
    -2
      app/src/main/java/com/wireguard/android/ProfileActivity.java

+ 2
- 2
app/src/main/java/com/wireguard/android/ProfileActivity.java Целия файл

@@ -39,11 +39,11 @@ public class ProfileActivity extends Activity {
// This layout consists only of containers for fragments.
setContentView(R.layout.profile_activity);
// Fill the layout with the initial set of fragments.
FragmentTransaction transaction = getFragmentManager().beginTransaction();
final FragmentTransaction transaction = getFragmentManager().beginTransaction();
transaction.add(R.id.list_fragment_container, new ProfileListFragment());
transaction.commit();
// Ensure the long-running service is started. This only needs to happen once.
Intent intent = new Intent(this, ProfileService.class);
final Intent intent = new Intent(this, ProfileService.class);
startService(intent);
}



Зареждане…
Отказ
Запис