Many people use the Date
class in Android, and it's really handy. But it's deprecated in later Java versions, and in Android as well. Given the fact that it was once the de facto standard, it's still widely used. So, why not use it? You can just use @SuppressWarnings("deprecated")
, right?
Wrong.