Skip to content

Commit

Permalink
Fixing javadoc for EventNode
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop committed Jul 25, 2018
1 parent b704e2f commit 7cae0d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/clubobsidian/trident/util/EventNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* Node class for events. Used
* in {@link EventDoublyLinkedList}
* in {@link com.clubobsidian.trident.util.EventDoublyLinkedList}
*
* @author virustotalop
*/
Expand All @@ -29,7 +29,7 @@ public MethodExecutor getData()
}

/**
* @return integer representation of the {@link Event}'s priority
* @return integer representation of the {@link com.clubobsidian.trident.Event}'s priority
*/
public int getPriority()
{
Expand All @@ -45,7 +45,7 @@ public synchronized EventNode getNext()
}

/**
* @param node to be set as the next node
* @param next node to be set as the next node
*/
public synchronized void setNext(EventNode next)
{
Expand All @@ -61,7 +61,7 @@ public synchronized EventNode getPrev()
}

/**
* @param node to be set as the previous node
* @param prev node to be set as the previous node
*/
public synchronized void setPrev(EventNode prev)
{
Expand Down

0 comments on commit 7cae0d5

Please sign in to comment.