Javadoc fix: Invalid member type qualification

This commit is contained in:
Joakim Erdfelt 2015-11-02 13:33:58 -07:00
parent 30888e134b
commit 60ed6cd143
1 changed files with 4 additions and 4 deletions

View File

@ -113,8 +113,8 @@ public class MultiPartContentProvider extends AbstractTypedContentProvider imple
* <p>The {@code Content-Type} of this part will be obtained from:</p> * <p>The {@code Content-Type} of this part will be obtained from:</p>
* <ul> * <ul>
* <li>the {@code Content-Type} header in the {@code fields} parameter; otherwise</li> * <li>the {@code Content-Type} header in the {@code fields} parameter; otherwise</li>
* <li>the {@link Typed#getContentType()} method if the {@code content} parameter * <li>the {@link org.eclipse.jetty.client.api.ContentProvider.Typed#getContentType()} method if the {@code content} parameter
* implements {@link Typed}; otherwise</li> * implements {@link org.eclipse.jetty.client.api.ContentProvider.Typed}; otherwise</li>
* <li>"text/plain"</li> * <li>"text/plain"</li>
* </ul> * </ul>
* *
@ -133,8 +133,8 @@ public class MultiPartContentProvider extends AbstractTypedContentProvider imple
* <p>The {@code Content-Type} of this part will be obtained from:</p> * <p>The {@code Content-Type} of this part will be obtained from:</p>
* <ul> * <ul>
* <li>the {@code Content-Type} header in the {@code fields} parameter; otherwise</li> * <li>the {@code Content-Type} header in the {@code fields} parameter; otherwise</li>
* <li>the {@link Typed#getContentType()} method if the {@code content} parameter * <li>the {@link org.eclipse.jetty.client.api.ContentProvider.Typed#getContentType()} method if the {@code content} parameter
* implements {@link Typed}; otherwise</li> * implements {@link org.eclipse.jetty.client.api.ContentProvider.Typed}; otherwise</li>
* <li>"application/octet-stream"</li> * <li>"application/octet-stream"</li>
* </ul> * </ul>
* *