Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 77 → Rev 78

/impl/src/java/pt/estgp/estgweb/web/utils/DatesUtils.java
21,6 → 21,8
 
public static String getStringFromDate(Date d)
{
if(d == null)
return null;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd");
return simpleDateFormat.format(d);
}