Skip to content

Commit

Permalink
Fix wrong date conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
woheller69 committed Apr 11, 2024
1 parent 62b7198 commit 2bf436f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public void onBindViewHolder(ObservationViewHolder holder, int position) {
holder.time.setText(timeString);

java.text.DateFormat df = java.text.DateFormat.getDateInstance(DateFormat.SHORT);
df.setTimeZone(TimeZone.getTimeZone("GMT"));
String dateString = df.format(birdObservations.get(position).getMillis());
holder.date.setText(dateString);

Expand Down

0 comments on commit 2bf436f

Please sign in to comment.