diff options
Diffstat (limited to 'samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java')
| -rw-r--r-- | samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java b/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java index b8a903ddb..2c163be66 100644 --- a/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java +++ b/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/AuthenticationService.java @@ -13,7 +13,6 @@ * License for the specific language governing permissions and limitations under * the License. */ - package com.example.android.samplesync.authenticator; import android.app.Service; @@ -26,7 +25,9 @@ import android.util.Log; * and returns its IBinder. */ public class AuthenticationService extends Service { + private static final String TAG = "AuthenticationService"; + private Authenticator mAuthenticator; @Override @@ -47,9 +48,8 @@ public class AuthenticationService extends Service { @Override public IBinder onBind(Intent intent) { if (Log.isLoggable(TAG, Log.VERBOSE)) { - Log.v(TAG, - "getBinder()... returning the AccountAuthenticator binder for intent " - + intent); + Log.v(TAG, "getBinder()... returning the AccountAuthenticator binder for intent " + + intent); } return mAuthenticator.getIBinder(); } |
