Code cleanup from XALANJ-2236 (from Dave Brosius)
diff --git a/src/org/apache/xalan/transformer/TransformerIdentityImpl.java b/src/org/apache/xalan/transformer/TransformerIdentityImpl.java
index 9603075..18e5e43 100644
--- a/src/org/apache/xalan/transformer/TransformerIdentityImpl.java
+++ b/src/org/apache/xalan/transformer/TransformerIdentityImpl.java
@@ -736,7 +736,7 @@
           throws IllegalArgumentException
   {
 
-    if (!m_outputFormat.isLegalPropertyKey(name))
+    if (!OutputProperties.isLegalPropertyKey(name))
       throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{name})); //"output property not recognized: "
                                          //+ name);
 
@@ -769,7 +769,7 @@
 
     if (null == value)
     {
-      if (!props.isLegalPropertyKey(name))
+      if (!OutputProperties.isLegalPropertyKey(name))
         throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{name})); //"output property not recognized: "
                                           // + name);
     }