https://bz.apache.org/bugzilla/show_bug.cgi?id=63289

Dominik Stadler <dominik.stad...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WONTFIX
                 OS|                            |All

--- Comment #1 from Dominik Stadler <dominik.stad...@gmx.at> ---
This was actually changed back in May 2017 via r1795123:

#52117 - Invalid "last printed" summary field value - added helper method to
identify undefined dates HPSF: fixed uid listing in Section.toString() HPSF:
moved timestamp based "utility" methods to Filetime class HPSF: preserve
original datastream for unchanged property sets  


The toString() seems to have been removed, it's probably best if you simply
copy this method to your code-base as there is no Apache POI specific code
contained in that method anyway.

public static String toString(final Throwable t)
    {
        final StringWriter sw = new StringWriter();
        final PrintWriter pw = new PrintWriter(sw);
        t.printStackTrace(pw);
        pw.close();
        try
        {
            sw.close();
            return sw.toString();
        }
        catch (IOException e)
        {
            final StringBuffer b = new StringBuffer(t.getMessage());
            b.append("\n");
            b.append("Could not create a stacktrace. Reason: ");
            b.append(e.getMessage());
            return b.toString();
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to