Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Yougourta committed Mar 9, 2019
1 parent daac96f commit 66c77b0
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
Expand Down Expand Up @@ -68,10 +67,8 @@ public void setView(RecAppointment appointment){
try {
SimpleDateFormat format = new SimpleDateFormat("dd/MM/yyyy");
Date date = format.parse(appointment.getDay());
Log.d("appointment", appointment.getDay());
SimpleDateFormat sdf2 = new SimpleDateFormat("EE dd MMMM yyyy");
String stringDate2 = sdf2.format(date);
Log.d("appointment", stringDate2);
day.setText(stringDate2);
}
catch(Exception e) {
Expand Down

0 comments on commit 66c77b0

Please sign in to comment.