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

--- Comment #3 from Tim Allison <talli...@mitre.org> ---

3.17:
 @Override
            public boolean isPlaceholder() {
                OEPlaceholderAtom oep = getPlaceholderAtom();
                if (oep != null) {
                    return true;
                }

                //special case for files saved in Office 2007
                RoundTripHFPlaceholder12 hldr = getHFPlaceholderAtom();
                if (hldr != null) {
                    return true;
                }

                return false;
            }

4.0.0-SNAPSHOT:
    @Override
    public boolean isPlaceholder() {
        return
            ((getPlaceholderAtom() != null) ||
            //special case for files saved in Office 2007
            (getHFPlaceholderAtom() != null)) &&
            // check for metro shape of complex placeholder
            (!new HSLFMetroShape<HSLFShape>(this).hasMetroBlob())
        ;
    }

It looks like an extra condition was added in r1829453 (Bug 62092) that the
shape have a metroBlob.

Should we revert that condition or do we need to do something else?

-- 
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