]> source.dussan.org Git - poi.git/commitdiff
[bug-62639] make private constructor on DateFormatter public
authorPJ Fanning <fanningpj@apache.org>
Mon, 20 Aug 2018 10:03:49 +0000 (10:03 +0000)
committerPJ Fanning <fanningpj@apache.org>
Mon, 20 Aug 2018 10:03:49 +0000 (10:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838420 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/usermodel/DataFormatter.java

index b225989c1d6db794e8a696bace492cea62160729..e1e5b7a2c180d10fb3db494e395ffc95fb0b1423 100644 (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.