You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2008/04/03 17:32:33 UTC

svn commit: r644363 - /webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java

Author: dims
Date: Thu Apr  3 08:32:33 2008
New Revision: 644363

URL: http://svn.apache.org/viewvc?rev=644363&view=rev
Log:
Switch statement found where one case falls through to the next case

Modified:
    webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java

Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java?rev=644363&r1=644362&r2=644363&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/message/util/impl/SAAJConverterImpl.java Thu Apr  3 08:32:33 2008
@@ -298,10 +298,12 @@
                     case XMLStreamReader.ATTRIBUTE: {
                         String eventName = "ATTRIBUTE";
                         this._unexpectedEvent(eventName);
+                        break;
                     }
                     case XMLStreamReader.NAMESPACE: {
                         String eventName = "NAMESPACE";
                         this._unexpectedEvent(eventName);
+                        break;
                     }
                     case XMLStreamReader.END_ELEMENT: {
                         if (parent instanceof SOAPEnvelope) {



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