You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by mu...@apache.org on 2006/06/01 23:29:25 UTC

svn commit: r410966 - /xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java

Author: mullan
Date: Thu Jun  1 14:29:24 2006
New Revision: 410966

URL: http://svn.apache.org/viewvc?rev=410966&view=rev
Log:
Fixed findbugs bug:
Unread field: ObjectContainer.log

Modified:
    xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java

Modified: xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java
URL: http://svn.apache.org/viewvc/xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java?rev=410966&r1=410965&r2=410966&view=diff
==============================================================================
--- xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java (original)
+++ xml/security/trunk/src/org/apache/xml/security/signature/ObjectContainer.java Thu Jun  1 14:29:24 2006
@@ -16,8 +16,6 @@
  */
 package org.apache.xml.security.signature;
 
-
-
 import org.apache.xml.security.exceptions.XMLSecurityException;
 import org.apache.xml.security.utils.Constants;
 import org.apache.xml.security.utils.IdResolver;
@@ -31,16 +29,11 @@
  * Handles <code>&lt;ds:Object&gt;</code> elements
  * <code>Object<code> {@link Element} supply facility which can contain any kind data
  *
- *
  * @author Christian Geuer-Pollmann
  * $todo$ if we remove childen, the boolean values are not updated
  */
 public class ObjectContainer extends SignatureElementProxy {
 
-   /** {@link org.apache.commons.logging} logging facility */
-   static org.apache.commons.logging.Log log = 
-       org.apache.commons.logging.LogFactory.getLog(ObjectContainer.class.getName());
-
    /**
     * Constructs {@link ObjectContainer}
     *
@@ -131,9 +124,9 @@
    }
 
    /**
-    * Adds childe Node
+    * Adds child Node
     *
-    * @param node childe Node
+    * @param node child Node
     * @return the new node in the tree.
     */
    public Node appendChild(Node node) {