Issue: Using SimpleDateFormat directly without an explicit locale Id: SimpleDateFormat
Issue
Id
SimpleDateFormat format = new SimpleDateFormat(
To remove the warning just add Locale.getDefault() as the second argument while instantiating the date format object. Eg.
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", java.util.Locale.getDefault());