| 5 | import java.util.Date; |
| 6 | |
| 7 | public class DateUtil { |
| 8 | |
| 9 | |
| 10 | public static String convertString(Date date,String format){ |
| 11 | if(date == null){ |
| 12 | return null; |
| 13 | } |
| 14 | SimpleDateFormat sdf = new SimpleDateFormat(format); |
| 15 | return sdf.format(date); |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected