vmassol 2002/11/10 03:09:05 Modified: jelly/src/java/org/apache/commons/jelly/impl TagScript.java Log: removed unused imports Revision Changes Path 1.27 +9 -14 jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/TagScript.java Index: TagScript.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/TagScript.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- TagScript.java 8 Nov 2002 18:27:51 -0000 1.26 +++ TagScript.java 10 Nov 2002 11:09:05 -0000 1.27 @@ -61,16 +61,9 @@ */ package org.apache.commons.jelly.impl; -import java.beans.BeanInfo; -import java.beans.Introspector; -import java.beans.PropertyDescriptor; -import java.lang.reflect.Method; import java.lang.reflect.InvocationTargetException; -import java.io.Writer; -import java.util.ArrayList; import java.util.Hashtable; import java.util.Iterator; -import java.util.List; import java.util.Map; import org.apache.commons.beanutils.ConvertingWrapDynaBean; @@ -451,8 +444,10 @@ * Returns the namespace context of this tag. This is all the prefixes * in scope in the document where this tag is used which are mapped to * their namespace URIs. - * * @return a Map with the keys are namespace prefixes and the values are - * namespace URIs. */ + * + * @return a Map with the keys are namespace prefixes and the values are + * namespace URIs. + */ public synchronized Map getNamespaceContext() { if (namespaceContext == null) { if (parent != null) {
-- To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>