Here you can find the source of toUtilDate(java.sql.Date d)
@Deprecated public static Date toUtilDate(java.sql.Date d)
//package com.java2s; //License from project: Open Source License import java.util.Date; public class Main { @Deprecated public static Date toUtilDate(java.sql.Date d) { return new Date(d.getTime()); }/*ww w . ja v a2s .c o m*/ }