Author: mwiederkehr
Date: Fri Dec 12 06:26:38 2008
New Revision: 726015

URL: http://svn.apache.org/viewvc?rev=726015&view=rev
Log:
Reverted deprecation of StringArrayMap because although the class is not used 
in Mime4j there may be users or libraries (Commons Fileupload) that need it. 
See MIME4J-24.

Modified:
    
james/mime4j/trunk/src/main/java/org/apache/james/mime4j/util/StringArrayMap.java

Modified: 
james/mime4j/trunk/src/main/java/org/apache/james/mime4j/util/StringArrayMap.java
URL: 
http://svn.apache.org/viewvc/james/mime4j/trunk/src/main/java/org/apache/james/mime4j/util/StringArrayMap.java?rev=726015&r1=726014&r2=726015&view=diff
==============================================================================
--- 
james/mime4j/trunk/src/main/java/org/apache/james/mime4j/util/StringArrayMap.java
 (original)
+++ 
james/mime4j/trunk/src/main/java/org/apache/james/mime4j/util/StringArrayMap.java
 Fri Dec 12 06:26:38 2008
@@ -26,14 +26,21 @@
 import java.util.Map;
 import java.util.NoSuchElementException;
 
+import org.apache.james.mime4j.field.Field;
+import org.apache.james.mime4j.message.Header;
+import org.apache.james.mime4j.parser.ContentHandler;
+
 
 /**
  * An object, which may be used to implement header, or parameter
  * maps. The maps keys are the header or parameter names. The
  * maps values are strings (single value), lists, or arrays.
- * 
+ * <p>
+ * Note that this class is not directly used anywhere in Mime4j.
+ * Instead a user might choose to use it instead of {...@link Header}
+ * and {...@link Field} in a custom {...@link ContentHandler} implementation.
+ * See also MIME4j-24.
  */
-...@deprecated
 public class StringArrayMap implements Serializable {
     private static final long serialVersionUID = -5833051164281786907L;
     private final Map<String, Object> map = new HashMap<String, Object>();



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to