Fix code style

This commit is contained in:
Dominik Schürmann
2016-01-02 18:49:13 +01:00
parent 4c0240dd6c
commit 91cb7a3b65
2 changed files with 8 additions and 6 deletions

View File

@@ -79,6 +79,8 @@ public class EncryptModeAsymmetricFragment extends EncryptModeFragment {
mSignKeySpinner = (KeySpinner) view.findViewById(R.id.sign);
mEncryptKeyView = (EncryptKeyCompletionView) view.findViewById(R.id.recipient_list);
mEncryptKeyView.setThreshold(1); // Start working from first character
// TODO: workaround for bug in TokenAutoComplete,
// see https://github.com/open-keychain/open-keychain/issues/1636
mEncryptKeyView.setDeletionStyle(TokenCompleteTextView.TokenDeleteStyle.ToString);
final ViewAnimator vSignatureIcon = (ViewAnimator) view.findViewById(R.id.result_signature_icon);

View File

@@ -334,12 +334,12 @@ public class KeyAdapter extends CursorAdapter {
}
}
@Override
public String toString()
{
return " ";
}
// TODO: workaround for bug in TokenAutoComplete,
// see https://github.com/open-keychain/open-keychain/issues/1636
@Override
public String toString() {
return " ";
}
}