Przykład

public class ClassA {
public void test () {
SimpleDateFormat sdf = new SimpleDateFormat();
}
}

Rozwiązanie
W deklaracji zmiennej SimpleDateFormat zawsze uwzględniaj argument Locale.

public class ClassA {
public void test () {
Locale loc = Locale.US ;
SimpleDateFormat sdf = new SimpleDateFormat("", loc);
}
}