The big code style cleanup

* Format using AOSP code style in Android Studio,
  excluding `Rearrange entries` option.
* Rename static variables to use proper naming scheme
* Remove empty lines

Change-Id: I0d193e35f071bc288050e587b1693844d68865e1
This commit is contained in:
Michael Bestas
2021-08-25 19:13:30 +03:00
committed by Timi Rautamäki
parent ade1361e3b
commit b7b34b96a9
32 changed files with 376 additions and 378 deletions

View File

@@ -61,17 +61,20 @@ public class EnableAccessibilityController {
// TODO: Fix these or remove these
//String text = mContext.getString(R.string.continue_to_enable_accessibility);
//mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
} break;
}
break;
case MESSAGE_SPEAK_ENABLE_CANCELED: {
//String text = mContext.getString(R.string.enable_accessibility_canceled);
//mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
} break;
}
break;
case MESSAGE_ENABLE_ACCESSIBILITY: {
enableAccessibility();
//mTone.play();
//mTts.speak(mContext.getString(R.string.accessibility_enabled),
// TextToSpeech.QUEUE_FLUSH, null);
} break;
}
break;
}
}
};
@@ -82,7 +85,6 @@ public class EnableAccessibilityController {
private final IAccessibilityManager mAccessibilityManager = IAccessibilityManager
.Stub.asInterface(ServiceManager.getService("accessibility"));
private final Context mContext;
private final UserManager mUserManager;
private final TextToSpeech mTts;