[bug-62639] make private constructor on DateFormatter public

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838420 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-08-20 10:03:49 +00:00
parent 71f2298b9a
commit a611b66fd1
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ public class DataFormatter implements Observer {
* @param localeIsAdapting (true only if locale is not user-specified)
* @param emulateCSV whether to emulate CSV output.
*/
private DataFormatter(Locale locale, boolean localeIsAdapting, boolean emulateCSV) {
public DataFormatter(Locale locale, boolean localeIsAdapting, boolean emulateCSV) {
this.localeIsAdapting = true;
localeChangedObservable.addObserver(this);
// localeIsAdapting must be true prior to this first checkForLocaleChange call.