Skip to content

Commit b94b48f

Browse files
committed
Solves Etar-Group#1
1 parent cdbf972 commit b94b48f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/android/calendar/CalendarToolbarHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private String buildDayOfWeek() {
122122
Time t = new Time(mTimeZone);
123123
t.set(mMilliTime);
124124
long julianDay = Time.getJulianDay(mMilliTime, t.gmtoff);
125-
String dayOfWeek = null;
125+
String dayOfWeek;
126126
mStringBuilder.setLength(0);
127127

128128
if (julianDay == mTodayJulianDay) {
@@ -141,7 +141,7 @@ private String buildDayOfWeek() {
141141
dayOfWeek = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime,
142142
DateUtils.FORMAT_SHOW_WEEKDAY, mTimeZone).toString();
143143
}
144-
return dayOfWeek.toUpperCase();
144+
return dayOfWeek;
145145
}
146146

147147
// Builds strings with different formats:

0 commit comments

Comments
 (0)