Skip to content

Commit

Permalink
Remove Logging message.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpongeBobSun committed Oct 8, 2016
1 parent bb5920e commit a1a638e
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public void onClick(View v) {
new CryptoUtil(itemView.getContext(), new CryptoUtil.OnDecryptedListener() {
@Override
public void onDecrypted(String account, String passwd, String addt) {
Log.e("LEELA", account + "|" + passwd + "|" + addt);
Intent intent = new Intent(itemView.getContext(), DetailActivity.class);
ArrayList<String> list = new ArrayList();
list.add(account);
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/sun/bob/leela/db/DaoMaster.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public OpenHelper(Context context, String name, CursorFactory factory) {

@Override
public void onCreate(SQLiteDatabase db) {
Log.i("greenDAO", "Creating tables for schema version " + SCHEMA_VERSION);
// Log.i("greenDAO", "Creating tables for schema version " + SCHEMA_VERSION);
createAllTables(db, false);
}
}
Expand All @@ -54,7 +54,7 @@ public DevOpenHelper(Context context, String name, CursorFactory factory) {

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables");
// Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables");
dropAllTables(db, true);
onCreate(db);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ private String encrypt() throws Exception{
+ Base64.encodeToString(output, Base64.DEFAULT) + ":"
+ Base64.encodeToString(salt, Base64.DEFAULT) + ":"
+ Base64.encodeToString(iv, Base64.DEFAULT);
Log.e("Encrypted Data ", ret);
return ret;

}
Expand Down Expand Up @@ -127,8 +126,6 @@ public String decrypt() throws Exception {

String ret = new String(output);

Log.e("Decrypted: ", ret);

return ret;
}
}
1 change: 0 additions & 1 deletion app/src/main/java/sun/bob/leela/services/IMEService.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public void onInitializeInterface() {
}
@Override
public View onCreateInputView() {
Log.e("Leela IME", "onCreateInputView");
kv = (PuffKeyboardView) View.inflate(this, R.layout.layout_ime, null);
// kv = (PuffKeyboardView)getLayoutInflater().inflate(R.layout.layout_ime, null);
kv.setKeyboard(currentKeyboard);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public void onPageScrolled(int position, float positionOffset, int positionOffse
@Override
public void onPageSelected(int position) {
if (position == 2) {
// Log.e("Leela", password);
((SecureStepDone) getSlide(position).getFragment()).setPassword(password);
((SecureStepDone) getSlide(position).getFragment()).setWordsAndType(words, type);
}
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/java/sun/bob/leela/utils/CryptoUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ public void onEventMainThread(CryptoEvent event) {
return;
}
if (this.accountHash != null && this.passwdHash != null && this.addtHash != null) {
Log.e("LEELA", "Encryped Callback");
dialog.dismiss();
this.onEncryptedListener.onEncrypted(accountHash, passwdHash, addtHash,
salts[0], salts[1], salts[2]);
Expand All @@ -209,7 +208,6 @@ public void onEventMainThread(CryptoEvent event) {
break;
case AppConstants.TYPE_SHTHPPN:
dialog.dismiss();
Log.e("LEELA", "Something went wrong");
break;
default:
if (dialog != null) {
Expand Down

0 comments on commit a1a638e

Please sign in to comment.