|
From: <pe...@us...> - 2004-02-19 19:48:13
|
Update of /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml/soap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3992/src/java/org/neuclear/xml/soap Modified Files: SOAPTools.java Log Message: At times IntelliJ IDEA can cause some real hassle. On my last checkin it optimized away all of the dom4j and command line imports. We'll now, Ive added them all back. Index: SOAPTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml/soap/SOAPTools.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SOAPTools.java 19 Feb 2004 15:30:08 -0000 1.7 --- SOAPTools.java 19 Feb 2004 19:37:33 -0000 1.8 *************** *** 1,4 **** --- 1,8 ---- /* $Id$ * $Log$ + * Revision 1.8 2004/02/19 19:37:33 pelle + * At times IntelliJ IDEA can cause some real hassle. On my last checkin it optimized away all of the dom4j and command line imports. + * We'll now, Ive added them all back. + * * Revision 1.7 2004/02/19 15:30:08 pelle * Various cleanups and corrections *************** *** 123,126 **** --- 127,131 ---- import org.dom4j.io.SAXReader; import org.neuclear.commons.NeuClearException; + import org.dom4j.*; import java.io.*; |