Skip to content

Commit

Permalink
Javadoc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Jul 5, 2017
1 parent 8f48872 commit 4aa1dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdx/src/com/badlogic/gdx/utils/Pool.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public int getFree () {
return freeObjects.size;
}

/** Objects implementing this interface will have {@link #reset()} called when passed to {@link #free(Object)}. */
/** Objects implementing this interface will have {@link #reset()} called when passed to {@link Pool#free(Object)}. */
static public interface Poolable {
/** Resets the object for reuse. Object references should be nulled and fields may be set to default values. */
public void reset ();
Expand Down

0 comments on commit 4aa1dce

Please sign in to comment.