Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
PhoenixOrigin committed Oct 15, 2023
1 parent 8725faa commit 4971fad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/phoenix/Callback.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface Callback<T extends Event> {
* OR
* <pre>
* <code>
* public class EventHandler implements Callback<\CustomEvent> {
* public class EventHandler implements Callback&lt;CustomEvent&gt; {
* {@code @Override}
* public void call(String channel, CustomEvent event) {
* // Handle Event
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/phoenix/EventEmitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* Standard event emitter class
* @param <T> Event type. Either should be a class that extends Event OR a generic type (? extends Event>)
* @param <T> Event type. Either should be a class that extends Event OR a generic type (EventEmitter&lt;? extends Event&gt;)
*/
public class EventEmitter<T extends Event> {

Expand Down

0 comments on commit 4971fad

Please sign in to comment.