mirror of https://github.com/apache/poi.git
[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:
parent
d32fb0e9dc
commit
278ed0fc32
|
@ -267,7 +267,7 @@ public class DataFormatter implements Observer {
|
||||||
* @param localeIsAdapting (true only if locale is not user-specified)
|
* @param localeIsAdapting (true only if locale is not user-specified)
|
||||||
* @param emulateCSV whether to emulate CSV output.
|
* @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;
|
this.localeIsAdapting = true;
|
||||||
localeChangedObservable.addObserver(this);
|
localeChangedObservable.addObserver(this);
|
||||||
// localeIsAdapting must be true prior to this first checkForLocaleChange call.
|
// localeIsAdapting must be true prior to this first checkForLocaleChange call.
|
||||||
|
|
Loading…
Reference in New Issue