treewide: Remove more useless log prints

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-07-25 00:32:38 +05:30
parent 5ce19cd92d
commit be206d796d
No known key found for this signature in database
GPG Key ID: C2E74282C2133D62
3 changed files with 0 additions and 5 deletions

View File

@ -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 {

View File

@ -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
}

View File

@ -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