Ignore:
Timestamp:
09/06/10 11:40:42 (21 months ago)
Author:
jharrop
Message:

Avoid things of the form:

extends JaxbXmlPart?<JAXBElement<xyz>>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/parts/WordprocessingML/MainDocumentPart.java

    r1166 r1203  
    412412                if (this.getEndNotesPart()!=null) { 
    413413                        log.debug("Looking at endnotes"); 
    414                         CTEndnotes endnotes= this.getEndNotesPart().getJaxbElement().getValue(); 
     414                        CTEndnotes endnotes= this.getEndNotesPart().getJaxbElement(); 
    415415                        traverseMainDocumentRecursive(endnotes.getEndnote(), null, stylesInUse);                         
    416416                } 
    417417                if (this.getFootnotesPart()!=null) { 
    418418                        log.debug("Looking at footnotes"); 
    419                         CTFootnotes footnotes= this.getFootnotesPart().getJaxbElement().getValue(); 
     419                        CTFootnotes footnotes= this.getFootnotesPart().getJaxbElement(); 
    420420                        traverseMainDocumentRecursive(footnotes.getFootnote(), null, stylesInUse);                       
    421421                } 
Note: See TracChangeset for help on using the changeset viewer.