You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2022/11/13 10:40:52 UTC

[ws-axiom] branch master updated: [AXIOM-506] Remove Javadoc reference to javax.activation

This is an automated email from the ASF dual-hosted git repository.

veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git


The following commit(s) were added to refs/heads/master by this push:
     new 96f313717 [AXIOM-506] Remove Javadoc reference to javax.activation
96f313717 is described below

commit 96f31371786b2768c0f88180d5d3ffc46707c540
Author: Andreas Veithen <an...@gmail.com>
AuthorDate: Sun Nov 13 10:40:44 2022 +0000

    [AXIOM-506] Remove Javadoc reference to javax.activation
---
 axiom-api/src/main/java/org/apache/axiom/mime/ContentType.java | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/axiom-api/src/main/java/org/apache/axiom/mime/ContentType.java b/axiom-api/src/main/java/org/apache/axiom/mime/ContentType.java
index dc90fbcbc..220639e43 100644
--- a/axiom-api/src/main/java/org/apache/axiom/mime/ContentType.java
+++ b/axiom-api/src/main/java/org/apache/axiom/mime/ContentType.java
@@ -26,8 +26,6 @@ import java.util.Locale;
 import java.util.Map;
 import java.util.Objects;
 
-import javax.activation.MimeType;
-
 /**
  * Represents the (parsed) value of a {@code Content-Type} header as defined by
  * <a href="http://tools.ietf.org/html/rfc2045">RFC 2045</a>.
@@ -45,10 +43,10 @@ import javax.activation.MimeType;
  * quoted-pair := "\" CHAR
  * </pre>
  * <p>
- * This class is similar to {@link MimeType} and JavaMail's <code>ContentType</code> class, but the
+ * This class is similar to Activation's {@code MimeType} and JavaMail's {@code ContentType} classes, but the
  * following differences exist:
  * <ul>
- * <li>This class is more lenient than (certain implementations of) {@link MimeType}. It will
+ * <li>This class is more lenient than (certain implementations of) {@code MimeType}. It will
  * accept content types that are not strictly valid, but that are commonly found. E.g. it will
  * accept content types with an extra semicolon at the end.
  * <li>This class is immutable.