[tor-commits] [orbot/master] rename mMessageReceiver to mLocalBroadcastReceiver

n8fr8 at torproject.org n8fr8 at torproject.org
Thu Jun 25 14:59:59 UTC 2015


commit 65d880100510562c74399d1c9d1ce7a009c147c8
Author: Hans-Christoph Steiner <hans at eds.org>
Date:   Tue Jun 9 14:44:13 2015 -0400

    rename mMessageReceiver to mLocalBroadcastReceiver
---
 src/org/torproject/android/OrbotMainActivity.java |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/org/torproject/android/OrbotMainActivity.java b/src/org/torproject/android/OrbotMainActivity.java
index e588e9c..a73e0db 100644
--- a/src/org/torproject/android/OrbotMainActivity.java
+++ b/src/org/torproject/android/OrbotMainActivity.java
@@ -107,10 +107,10 @@ public class OrbotMainActivity extends Activity implements OrbotConstants, OnLon
     	/* receive the internal status broadcasts, which are separate from the public
     	 * status broadcasts to prevent other apps from sending fake/wrong status
     	 * info to this app */
-    	LocalBroadcastManager.getInstance(this).registerReceiver(mMessageReceiver,
+    	LocalBroadcastManager.getInstance(this).registerReceiver(mLocalBroadcastReceiver,
   	      new IntentFilter(TorServiceConstants.LOCAL_ACTION_STATUS));
   	  
-		LocalBroadcastManager.getInstance(this).registerReceiver(mMessageReceiver,
+		LocalBroadcastManager.getInstance(this).registerReceiver(mLocalBroadcastReceiver,
 			      new IntentFilter(TorServiceConstants.LOCAL_ACTION_LOG));
 	}
 	
@@ -129,7 +129,7 @@ public class OrbotMainActivity extends Activity implements OrbotConstants, OnLon
 
     // Our handler for received Intents. This will be called whenever an Intent
     // with an action named "custom-event-name" is broadcasted.
-    private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
+    private BroadcastReceiver mLocalBroadcastReceiver = new BroadcastReceiver() {
 
       @Override
       public void onReceive(Context context, Intent intent) {
@@ -1255,7 +1255,7 @@ public class OrbotMainActivity extends Activity implements OrbotConstants, OnLon
        @Override
     protected void onDestroy() {
         super.onDestroy();
-          LocalBroadcastManager.getInstance(this).unregisterReceiver(mMessageReceiver);
+          LocalBroadcastManager.getInstance(this).unregisterReceiver(mLocalBroadcastReceiver);
 
     }
 





More information about the tor-commits mailing list