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 di...@apache.org on 2008/03/15 05:56:07 UTC

svn commit: r637354 - /webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java

Author: dims
Date: Fri Mar 14 21:55:50 2008
New Revision: 637354

URL: http://svn.apache.org/viewvc?rev=637354&view=rev
Log:
import cleanup issue

Modified:
    webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java

Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java?rev=637354&r1=637353&r2=637354&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/spi/migrator/ApplicationContextMigratorUtil.java Fri Mar 14 21:55:50 2008
@@ -221,7 +221,7 @@
         public void putAll(Map<? extends String, ? extends Object> m) {
             // we need to take advantage of the smarter put(String, Object)
             for (Iterator it = m.entrySet().iterator(); it.hasNext();) {
-                Entry entry = (Entry)it.next();
+                Map.Entry entry = (Map.Entry)it.next();
                 put((String)entry.getKey(), entry.getValue());
             }
         }
@@ -325,7 +325,7 @@
                 // over the properties is due to this being the source object for a putAll(source)
                 // We would therefore be setting scope for a property that never actually makes
                 // its way into the messageContext
-                Entry entry = (Entry)containedIterator.next();
+                Map.Entry entry = (Map.Entry)containedIterator.next();
                 mepCtx.setScope((String)entry.getKey(), Scope.APPLICATION);
                 return entry;
             }
@@ -368,7 +368,7 @@
         public void putAll(Map<? extends String, ? extends Object> m) {
             // we need to take advantage of the smarter put(String, Object)
             for (Iterator it = m.entrySet().iterator(); it.hasNext();) {
-                Entry entry = (Entry)it.next();
+                Map.Entry entry = (Map.Entry)it.next();
                 put((String)entry.getKey(), entry.getValue());
             }
         }



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