Skip to content

Commit

Permalink
Change DateFormatTitleFormatter to use LLLL instead of MMMM for month…
Browse files Browse the repository at this point in the history
… formatting (needed for some context aware languages)
  • Loading branch information
ekchang committed May 25, 2016
1 parent 1f5953d commit b456670
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public class DateFormatTitleFormatter implements TitleFormatter {
private final DateFormat dateFormat;

/**
* Format using "MMMM yyyy" for formatting
* Format using "LLLL yyyy" for formatting
*/
public DateFormatTitleFormatter() {
this.dateFormat = new SimpleDateFormat(
"MMMM yyyy", Locale.getDefault()
"LLLL yyyy", Locale.getDefault()
);
}

Expand Down

0 comments on commit b456670

Please sign in to comment.