convert link to internal jdk api to preformatted code

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2021-08-09 23:50:22 +00:00
parent b4e1eedcf8
commit 76962c143c
1 changed files with 11 additions and 11 deletions

View File

@ -36,7 +36,7 @@ import java.io.IOException;
* You may wish to implement your own strategy that meets the needs of * You may wish to implement your own strategy that meets the needs of
* your situation. * your situation.
* </li> * </li>
* <li>A strategy that keeps the <code>n</code> most-recent files, discarding * <li>A strategy that keeps the {@code n} most-recent files, discarding
* older files on a first-in, first-out basis. * older files on a first-in, first-out basis.
* A java.util.Deque or org.apache.commons.collections4.queue.CircularFifoQueue * A java.util.Deque or org.apache.commons.collections4.queue.CircularFifoQueue
* may be helpful for achieving this. * may be helpful for achieving this.
@ -46,7 +46,7 @@ import java.io.IOException;
* delete the temporary files in the reverse order that they were created. * delete the temporary files in the reverse order that they were created.
* This is the same as DefaultTempFileCreationStrategy, except the strategy * This is the same as DefaultTempFileCreationStrategy, except the strategy
* class would maintain the list of files to delete rather than or in * class would maintain the list of files to delete rather than or in
* addition to {@link java.io.DeleteOnExitHook} maintaining the list, and * addition to {@code java.io.DeleteOnExitHook} maintaining the list, and
* the files could be deleted before the JVM exit. * the files could be deleted before the JVM exit.
* </li> * </li>
* <li>A strategy that creates a directory that is deleted on JVM exit. * <li>A strategy that creates a directory that is deleted on JVM exit.