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:30:44 UTC

svn commit: r410967 - /xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java

Author: mullan
Date: Thu Jun  1 14:30:44 2006
New Revision: 410967

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

Modified:
    xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java

Modified: xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java
URL: http://svn.apache.org/viewvc/xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java?rev=410967&r1=410966&r2=410967&view=diff
==============================================================================
--- xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java (original)
+++ xml/security/trunk/src/org/apache/xml/security/transforms/TransformSpi.java Thu Jun  1 14:30:44 2006
@@ -1,4 +1,3 @@
-
 /*
  * Copyright  1999-2004 The Apache Software Foundation.
  *
@@ -17,11 +16,8 @@
  */
 package org.apache.xml.security.transforms;
 
-
-
 import java.io.IOException;
 import java.io.OutputStream;
-
 import javax.xml.parsers.ParserConfigurationException;
 
 import org.apache.xml.security.c14n.CanonicalizationException;
@@ -37,10 +33,6 @@
  * @author Christian Geuer-Pollmann
  */
 public abstract class TransformSpi {
-
-   /** {@link org.apache.commons.logging} logging facility */
-    static org.apache.commons.logging.Log log = 
-        org.apache.commons.logging.LogFactory.getLog(TransformSpi.class.getName());
 
    protected Transform _transformObject = null;
    protected void setTransform(Transform transform) {