You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mk...@apache.org on 2003/08/18 19:41:53 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/extensions ExtensionHandlerGeneral.java

mkwan       2003/08/18 10:41:53

  Modified:    java/src/org/apache/xalan/extensions
                        ExtensionHandlerGeneral.java
  Log:
  Fix a typepo in ExtensionHandlerGeneral.java. It should check for null
  instead of nonnull.
  
  Revision  Changes    Path
  1.20      +2 -2      xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerGeneral.java
  
  Index: ExtensionHandlerGeneral.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerGeneral.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ExtensionHandlerGeneral.java	14 Aug 2003 16:27:43 -0000	1.19
  +++ ExtensionHandlerGeneral.java	18 Aug 2003 17:41:53 -0000	1.20
  @@ -109,7 +109,7 @@
     private Object m_engine;
   
     /** Engine call to invoke scripts */
  -  private Method m_engineCall;
  +  private Method m_engineCall = null;
   
     // static fields
   
  @@ -322,7 +322,7 @@
           }
         }
   
  -      if (m_engineCall != null) {
  +      if (m_engineCall == null) {
           m_engineCall = m_engine.getClass().getMethod("call",
             new Class[]{ Object.class, String.class, Object[].class });
         }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org