i have this little function
public static String getLocalTime()
{
Date d = new Date();
String str = d.toGMTString();
return str;
}
when i compile causes this warning :
Warning(92,24): method toGMTString() in class java.util.Date has been deprecated
what must i do to fix this warning???
thx