Cleanup whitespace.
diff --git a/src/com/android/stk/StkAppService.java b/src/com/android/stk/StkAppService.java
index d7eabd8..d13be1d 100644
--- a/src/com/android/stk/StkAppService.java
+++ b/src/com/android/stk/StkAppService.java
@@ -52,7 +52,7 @@
/**
* SIM toolkit application level service. Interacts with Telephopny messages,
* application's launch and user input from STK UI elements.
- *
+ *
*/
public class StkAppService extends Service implements Runnable {
@@ -110,15 +110,15 @@
static final int RES_ID_EXIT = 23;
private static final String PACKAGE_NAME = "com.android.stk";
- private static final String MENU_ACTIVITY_NAME =
+ private static final String MENU_ACTIVITY_NAME =
PACKAGE_NAME + ".StkMenuActivity";
- private static final String INPUT_ACTIVITY_NAME =
+ private static final String INPUT_ACTIVITY_NAME =
PACKAGE_NAME + ".StkInputActivity";
-
+
// Notification id used to display Idle Mode text in NotificationManager.
private static final int STK_NOTIFICATION_ID = 333;
-
- // Inner class used for queuing telephony messages (proactive commands,
+
+ // Inner class used for queuing telephony messages (proactive commands,
// session end) while the service is busy processing a previous message.
private class DelayedCmd {
// members
@@ -257,7 +257,7 @@
// 1. Interactive - user's response is required.
// 2. Informative - display a message, no interaction with the user.
//
- // Informative commands can be handled immediately without any delay.
+ // Informative commands can be handled immediately without any delay.
// Interactive commands can't override each other. So if a command
// is already in progress, we need to queue the next command until
// the user has responded or a timeout expired.
@@ -344,7 +344,7 @@
private void handleSessionEnd() {
mCurrentCmd = mMainCmd;
lastSelectedItem = null;
- // In case of SET UP MENU command which removed the app, don't
+ // In case of SET UP MENU command which removed the app, don't
// update the current menu member.
if (mCurrentMenu != null && mMainCmd != null) {
mCurrentMenu = mMainCmd.getMenu();
@@ -538,7 +538,7 @@
* then we are the foreground app and we'll return 0 as from our perspective a
* user action did cause. If it's false than we aren't the foreground app and
* FLAG_ACTIVITY_NO_USER_ACTION is returned.
- *
+ *
* @return 0 or FLAG_ACTIVITY_NO_USER_ACTION
*/
private int getFlagActivityNoUserAction(InitiatedByUserAction userAction) {
@@ -634,7 +634,7 @@
intent.setClassName("com.android.browser",
"com.android.browser.BrowserActivity");
- // to launch home page, make sure that data Uri is null.
+ // to launch home page, make sure that data Uri is null.
Uri data = null;
if (settings.url != null) {
data = Uri.parse(settings.url);
@@ -657,7 +657,7 @@
// start browser activity
startActivity(intent);
// a small delay, let the browser start, before processing the next command.
- // this is good for scenarios where a related DISPLAY TEXT command is
+ // this is good for scenarios where a related DISPLAY TEXT command is
// followed immediately.
try {
Thread.sleep(10000);
@@ -738,7 +738,7 @@
private boolean removeMenu() {
try {
- if (mCurrentMenu.items.size() == 1 &&
+ if (mCurrentMenu.items.size() == 1 &&
mCurrentMenu.items.get(0) == null) {
return true;
}