mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 05:17:43 +00:00
treewide: Remove more useless log prints
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
parent
5ce19cd92d
commit
be206d796d
@ -148,8 +148,6 @@ public class PasswordFragment extends Fragment {
|
||||
* @param filter the filter to apply
|
||||
*/
|
||||
public void filterAdapter(String filter) {
|
||||
Log.d("FRAG", "filter: " + filter);
|
||||
|
||||
if (filter.isEmpty()) {
|
||||
refreshAdapter();
|
||||
} else {
|
||||
|
@ -583,7 +583,6 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound {
|
||||
|
||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||
super.onActivityResult(requestCode, resultCode, data)
|
||||
Log.d(TAG, "onActivityResult resultCode: $resultCode")
|
||||
|
||||
if (data == null) {
|
||||
setResult(RESULT_CANCELED, null)
|
||||
@ -760,7 +759,6 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound {
|
||||
|
||||
// Block for 1s or until cancel is signalled
|
||||
if (cancelNotify.block(1000)) {
|
||||
Log.d("DELAY_SHOW", "Cancelled")
|
||||
return true
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,6 @@ public class GitAsyncTask extends AsyncTask<GitCommand, Integer, String> {
|
||||
Integer nbChanges = null;
|
||||
final Activity activity = getActivity();
|
||||
for (GitCommand command : commands) {
|
||||
Log.d("doInBackground", "Executing the command <" + command.toString() + ">");
|
||||
try {
|
||||
if (command instanceof StatusCommand) {
|
||||
// in case we have changes, we want to keep track of it
|
||||
|
Loading…
x
Reference in New Issue
Block a user