Fixing generic <> in documentation to display properly

This commit is contained in:
Roman Stoffel 2013-02-11 11:09:39 +01:00 committed by Norman Maurer
parent 6c7bd6d174
commit 291bcab9f9

View File

@ -72,7 +72,7 @@ import java.lang.annotation.Target;
* // your methods here * // your methods here
* } * }
* *
* public class DataServerHandler extends {@link ChannelInboundMessageHandlerAdapter}&ltMessage&gt { * public class DataServerHandler extends {@link ChannelInboundMessageHandlerAdapter}&lt;Message&gt; {
* *
* <b>private boolean loggedIn;</b> * <b>private boolean loggedIn;</b>
* *
@ -121,7 +121,7 @@ import java.lang.annotation.Target;
* } * }
* *
* {@code @Sharable} * {@code @Sharable}
* public class DataServerHandler extends {@link ChannelInboundMessageHandlerAdapter}&ltMessage&gt { * public class DataServerHandler extends {@link ChannelInboundMessageHandlerAdapter}&lt;Message&gt; {
* private final {@link AttributeKey}&lt{@link Boolean}&gt auth = * private final {@link AttributeKey}&lt{@link Boolean}&gt auth =
* new {@link AttributeKey}&lt{@link Boolean}&gt("auth"); * new {@link AttributeKey}&lt{@link Boolean}&gt("auth");
* *