Skip to content

Commit a1a638e

Browse files
committed
Remove Logging message.
1 parent bb5920e commit a1a638e

File tree

7 files changed

+3
-11
lines changed

7 files changed

+3
-11
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/java/sun/bob/leela/adapters/AcctListViewHolder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public void onClick(View v) {
8484
new CryptoUtil(itemView.getContext(), new CryptoUtil.OnDecryptedListener() {
8585
@Override
8686
public void onDecrypted(String account, String passwd, String addt) {
87-
Log.e("LEELA", account + "|" + passwd + "|" + addt);
8887
Intent intent = new Intent(itemView.getContext(), DetailActivity.class);
8988
ArrayList<String> list = new ArrayList();
9089
list.add(account);

app/src/main/java/sun/bob/leela/db/DaoMaster.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public OpenHelper(Context context, String name, CursorFactory factory) {
4141

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

5555
@Override
5656
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
57-
Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables");
57+
// Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables");
5858
dropAllTables(db, true);
5959
onCreate(db);
6060
}

app/src/main/java/sun/bob/leela/runnable/QuickPassRunnable.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ private String encrypt() throws Exception{
9999
+ Base64.encodeToString(output, Base64.DEFAULT) + ":"
100100
+ Base64.encodeToString(salt, Base64.DEFAULT) + ":"
101101
+ Base64.encodeToString(iv, Base64.DEFAULT);
102-
Log.e("Encrypted Data ", ret);
103102
return ret;
104103

105104
}
@@ -127,8 +126,6 @@ public String decrypt() throws Exception {
127126

128127
String ret = new String(output);
129128

130-
Log.e("Decrypted: ", ret);
131-
132129
return ret;
133130
}
134131
}

app/src/main/java/sun/bob/leela/services/IMEService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public void onInitializeInterface() {
5454
}
5555
@Override
5656
public View onCreateInputView() {
57-
Log.e("Leela IME", "onCreateInputView");
5857
kv = (PuffKeyboardView) View.inflate(this, R.layout.layout_ime, null);
5958
// kv = (PuffKeyboardView)getLayoutInflater().inflate(R.layout.layout_ime, null);
6059
kv.setKeyboard(currentKeyboard);

app/src/main/java/sun/bob/leela/ui/activities/PasswordGenActivity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ public void onPageScrolled(int position, float positionOffset, int positionOffse
8383
@Override
8484
public void onPageSelected(int position) {
8585
if (position == 2) {
86-
// Log.e("Leela", password);
8786
((SecureStepDone) getSlide(position).getFragment()).setPassword(password);
8887
((SecureStepDone) getSlide(position).getFragment()).setWordsAndType(words, type);
8988
}

app/src/main/java/sun/bob/leela/utils/CryptoUtil.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ public void onEventMainThread(CryptoEvent event) {
197197
return;
198198
}
199199
if (this.accountHash != null && this.passwdHash != null && this.addtHash != null) {
200-
Log.e("LEELA", "Encryped Callback");
201200
dialog.dismiss();
202201
this.onEncryptedListener.onEncrypted(accountHash, passwdHash, addtHash,
203202
salts[0], salts[1], salts[2]);
@@ -209,7 +208,6 @@ public void onEventMainThread(CryptoEvent event) {
209208
break;
210209
case AppConstants.TYPE_SHTHPPN:
211210
dialog.dismiss();
212-
Log.e("LEELA", "Something went wrong");
213211
break;
214212
default:
215213
if (dialog != null) {

0 commit comments

Comments
 (0)