You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2011/10/19 08:48:29 UTC

svn commit: r1185992 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java

Author: sagara
Date: Wed Oct 19 06:48:29 2011
New Revision: 1185992

URL: http://svn.apache.org/viewvc?rev=1185992&view=rev
Log:
Added few refinements for Map processing.

Modified:
    axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java

Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java?rev=1185992&r1=1185991&r2=1185992&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java (original)
+++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/java2wsdl/DefaultSchemaGenerator.java Wed Oct 19 06:48:29 2011
@@ -2017,7 +2017,7 @@ public class DefaultSchemaGenerator impl
 	 *
 	 * @return the string
 	 */
-	private static String generateUniqueNameForMap() {
+	private String generateUniqueNameForMap() {
 		String name = Constants.MAP_MAP_ELEMENT_NAME + mapCount;
 		mapCount++;
 		return name;
@@ -2028,7 +2028,7 @@ public class DefaultSchemaGenerator impl
 	 *
 	 * @return the unique name for map entry
 	 */
-	private static String generateUniqueNameForMapEntry() {
+	private String generateUniqueNameForMapEntry() {
 		String name = Constants.MAP_ENTRY_ELEMENT_NAME + entryCount;
 		entryCount++;
 		return name;