INTEGRATION: CWS java15enum (1.2.20); FILE MERGED
2006/05/16 04:45:43 pjanik 1.2.20.1: #i59368#: enum is a reserved word in Java JDK 1.5
This commit is contained in:
parent
36e63e75bd
commit
52964d40a8
1 changed files with 3 additions and 3 deletions
|
@ -155,14 +155,14 @@ public final class DocumentDeserializerImpl
|
|||
*/
|
||||
public Document deserialize() throws ConvertException, IOException {
|
||||
log("\nFound the XSLT deserializer");
|
||||
Enumeration enum = cd.getDocumentEnumeration();
|
||||
Enumeration enumerate = cd.getDocumentEnumeration();
|
||||
org.w3c.dom.Document domDoc=null;
|
||||
DOMDocument docOut=null;
|
||||
GenericOfficeDocument doc = null;
|
||||
ByteArrayOutputStream baos =null;
|
||||
GenericOfficeDocument sxwDoc = new GenericOfficeDocument("output");
|
||||
while (enum.hasMoreElements()) {
|
||||
docOut = (DOMDocument) enum.nextElement();
|
||||
while (enumerate.hasMoreElements()) {
|
||||
docOut = (DOMDocument) enumerate.nextElement();
|
||||
}
|
||||
domDoc = docOut.getContentDOM();
|
||||
try{
|
||||
|
|
Loading…
Reference in a new issue