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 aj...@apache.org on 2006/02/06 04:52:38 UTC

svn commit: r375165 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java

Author: ajith
Date: Sun Feb  5 19:52:36 2006
New Revision: 375165

URL: http://svn.apache.org/viewcvs?rev=375165&view=rev
Log:
Sorry guys - I've unintentionally commented a pair of important statements. correcting the error

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java?rev=375165&r1=375164&r2=375165&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/deployment/DescriptionBuilder.java Sun Feb  5 19:52:36 2006
@@ -418,8 +418,8 @@
                 .getPolicyReader(PolicyFactory.OM_POLICY_READER);
 
         while (policyElements.hasNext()) {
-//            Policy p = reader.readPolicy((OMElement) policyElements.next());
-//            policyInclude.addPolicyElement(type, p);
+            Policy p = reader.readPolicy((OMElement) policyElements.next());
+            policyInclude.addPolicyElement(type, p);
         }
     }
 
@@ -429,9 +429,9 @@
                 .getPolicyReader(PolicyFactory.OM_POLICY_READER);
 
         while (policyRefElements.hasNext()) {
-//            PolicyReference policyReference = reader
-//                    .readPolicyReference((OMElement) policyRefElements.next());
-//            policyInclude.addPolicyRefElement(type, policyReference);
+            PolicyReference policyReference = reader
+                    .readPolicyReference((OMElement) policyRefElements.next());
+            policyInclude.addPolicyRefElement(type, policyReference);
         }
     }