| Chunk |
|---|
| Conflicting content |
|---|
*/
public static String getTimeFormatString(Context context, int userHandle) {
LocaleData d = LocaleData.get(context.getResources().getConfiguration().locale);
<<<<<<< HEAD
return is24HourFormat(context) ? d.timeFormat_Hm : d.timeFormat_hm;
=======
return is24HourFormat(context, userHandle) ? d.timeFormat24 : d.timeFormat12;
>>>>>>> f0fc23a14170cdd37d4ae641293d6e87b846680a
}
/** |
| Solution content |
|---|
*/
public static String getTimeFormatString(Context context, int userHandle) {
LocaleData d = LocaleData.get(context.getResources().getConfiguration().locale);
return is24HourFormat(context, userHandle) ? d.timeFormat_Hm : d.timeFormat_hm;
}
/** |
| File |
|---|
| DateFormat.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Method invocation |
| Return statement |
| Variable |