You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by st...@apache.org on 2004/07/27 13:01:07 UTC

cvs commit: ws-axis/java/src/org/apache/axis/message SOAPDocumentImpl.java

stevel      2004/07/27 04:01:07

  Modified:    java/src/org/apache/axis/message SOAPDocumentImpl.java
  Log:
  latest version of IDEA can warn of package-scoped attributes. Here they become protected instead.
  
  Revision  Changes    Path
  1.9       +3 -3      ws-axis/java/src/org/apache/axis/message/SOAPDocumentImpl.java
  
  Index: SOAPDocumentImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/message/SOAPDocumentImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SOAPDocumentImpl.java	16 Jul 2004 16:05:04 -0000	1.8
  +++ SOAPDocumentImpl.java	27 Jul 2004 11:01:07 -0000	1.9
  @@ -55,13 +55,13 @@
   implements org.w3c.dom.Document, java.io.Serializable {
   
       // Depending on the user's parser preference
  -    org.w3c.dom.Document delegate = null;
  -    SOAPPart soapPart = null;
  +    protected Document delegate = null;
  +    protected SOAPPart soapPart = null;
   
       /**
        * Construct the Document
        * 
  -     * @param soapPart
  +     * @param sp the soap part
        */
       public SOAPDocumentImpl(SOAPPart sp) {
           try {