Skip to content
This repository has been archived by the owner on May 21, 2020. It is now read-only.

Commit

Permalink
Fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dounx committed Mar 28, 2018
1 parent 1e839d0 commit 15b0483
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/Util/DateFormatter.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static Date ParseStringToDate(String dateString) {
public static String ParseDateToString(Date date, Locale locale, Context context) {
SimpleDateFormat dateFormat;
if (UserPreferences.getStoredLanguage(context).equals("Chinese")) {
dateFormat = new SimpleDateFormat("yyyy MMM d", locale);
dateFormat = new SimpleDateFormat("yyyy mmm d", locale);
} else {
dateFormat = new SimpleDateFormat("MMM d, yyyy", locale);
}
Expand Down
14 changes: 0 additions & 14 deletions app/src/main/java/Util/Localization.java

This file was deleted.

0 comments on commit 15b0483

Please sign in to comment.