Skip to content

Commit

Permalink
Removed logs
Browse files Browse the repository at this point in the history
[Branch : Master]
[05/12/2020 commit 1]
  • Loading branch information
praveen committed Dec 5, 2020
1 parent f072344 commit a59decb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,9 @@ public CountModel(int key, String count){
}

public String getCount(){
Log.e("db", "getCount"+this.count);
return this.count;
}

public void setCount(String count){

Log.e("db", "setCount"+count);
this.count = count;}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public abstract class CountDatabase extends RoomDatabase {
public static synchronized CountDatabase getInstance(Context context){

if(db == null){
Log.e("db", "created");
db = Room.databaseBuilder(context.getApplicationContext(),
CountDatabase.class, "count_db")
.fallbackToDestructiveMigration()
Expand Down

0 comments on commit a59decb

Please sign in to comment.