mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Remove more log messages
This commit is contained in:
@@ -203,7 +203,6 @@ public class ListHabitsFragment extends Fragment
|
||||
|
||||
private void updateEmptyMessage()
|
||||
{
|
||||
Log.d("x", "updating empty message");
|
||||
llEmpty.setVisibility(Habit.getCount() > 0 ? View.GONE : View.VISIBLE);
|
||||
}
|
||||
|
||||
@@ -250,10 +249,9 @@ public class ListHabitsFragment extends Fragment
|
||||
|
||||
void updateStarCount()
|
||||
{
|
||||
Log.d("StarCount", "updating star count");
|
||||
String msg = "";
|
||||
int starCount = Habit.getStarCount();
|
||||
|
||||
|
||||
if (starCount == 1) msg = String.format("%d star", starCount);
|
||||
else if (starCount > 1) msg = String.format("%d stars", starCount);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user