udacity / Sunshine-Version-2

The official repository for Developing Android Apps
Apache License 2.0
2.87k stars 4.41k forks source link

5.03 update forecast adapter #331

Open Lustralis opened 7 years ago

Lustralis commented 7 years ago

On line 86 - this won't even compile:

return String.format(context.getString( formatId, today, getFormattedMonthDay(context, dateInMillis)));

remove the method String.format like this:

return context.getString(formatId, today, getFormattedMonthDay(context, dateInMillis));