Skip to content

Commit

Permalink
fixed some javadoc and maven warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw committed Nov 5, 2024
1 parent 8ce9310 commit ded621e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions jetty-core/jetty-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@
<artifactId>jetty-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util-ajax</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ default <T extends Handler.Container> T getContainer(Handler handler, Class<T> t
/**
* <p>A {@link Handler.Container} that can contain multiple other {@link Handler}s.</p>
*
* @see Sequence for an implementation of {@link Collection}.
* @see Sequence for an implementation of {@code Collection}.
* @see Singleton
*/
interface Collection extends Container
Expand Down Expand Up @@ -290,7 +290,7 @@ default void setHandlers(Handler... handlers)
* <p>This is a "singleton" in the sense of {@link Collections#singleton(Object)} and not
* in the sense of the singleton pattern of a single instance per JVM.</p>
*
* @see Wrapper for an implementation of {@link Singleton}.
* @see Wrapper for an implementation of {@code Singleton}.
* @see Collection
*/
@ManagedObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* <p>Any coding errors in the string will be reported by a {@link CharacterCodingException} thrown
* from the {@link #build()} method.</p>
* @see Utf8StringBuilder for UTF-8 decoding with replacement of coding errors and/or fast fail behaviour.
* @see CharsetDecoder for decoding arbitrary {@link Charset}s with control over {@link CodingErrorAction}.
* @see CharsetDecoder for decoding arbitrary {@code Charset}s with control over {@code CodingErrorAction}.
*/
public interface CharsetStringBuilder
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* {@link CharacterCodingException}. Already decoded characters may also be appended (e.g. {@link #append(char)}
* making this class suitable for decoding % encoded strings of already decoded characters.
* </p>
* @see CharsetStringBuilder for decoding of arbitrary {@link java.nio.charset.Charset}s.
* @see CharsetStringBuilder for decoding of arbitrary {@code Charset}s.
*/
public class Utf8StringBuilder implements CharsetStringBuilder
{
Expand Down

0 comments on commit ded621e

Please sign in to comment.