File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/test/java/org/apache/commons/io/serialization Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2727import org .junit .jupiter .api .BeforeEach ;
2828
2929/**
30- * Test base class that keeps track of Closeable objects and cleans them up.
30+ * Abstract test class that tracks {@link Closeable} objects and cleans them up.
31+ *
32+ * @see Closeable
3133 */
3234public abstract class AbstractCloseableListTest {
3335 private final List <Closeable > closeableList = new ArrayList <>();
3436
3537 /**
36- * Adds a Closeable to close after each test.
38+ * Adds a {@link Closeable} to close after each test.
3739 *
3840 * @param <T> The Closeable type
3941 * @param t The Closeable.
4042 * @return The Closeable.
43+ * @see Closeable
4144 */
4245 protected <T extends Closeable > T addCloseable (final T t ) {
4346 closeableList .add (t );
You can’t perform that action at this time.
0 commit comments