remove unnecessary battery check

CID 1039945
This commit is contained in:
Mike Blumenkrantz 2014-04-04 14:04:36 -04:00
parent ba3ffcf029
commit 18cc2222f3
1 changed files with 0 additions and 1 deletions

View File

@ -237,7 +237,6 @@ _battery_face_time_set(Evas_Object *battery, int t)
hrs = (t / 3600);
mins = ((t) / 60 - (hrs * 60));
if (hrs < 0) hrs = 0;
if (mins < 0) mins = 0;
snprintf(buf, sizeof(buf), "%i:%02i", hrs, mins);
edje_object_part_text_set(battery, "e.text.time", buf);