Skip to content

Commit 30f81c4

Browse files
author
Gary Gregory
committed
Javadoc: Make Javadoc HTML 5 compliant on Java 11.
1 parent b5990be commit 30f81c4

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/main/java/org/apache/commons/io/DirectoryWalker.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
* <p>
3737
* The following sections describe:
3838
* <ul>
39-
* <li><a href="#example">1. Example Implementation</a> - example
39+
* <li><a href="#DirectoryWalker_example">1. Example Implementation</a> - example
4040
* <code>FileCleaner</code> implementation.</li>
41-
* <li><a href="#filter">2. Filter Example</a> - using
41+
* <li><a href="#DirectoryWalker_filter">2. Filter Example</a> - using
4242
* {@link FileFilter}(s) with <code>DirectoryWalker</code>.</li>
43-
* <li><a href="#cancel">3. Cancellation</a> - how to implement cancellation
43+
* <li><a href="#DirectoryWalker_cancel">3. Cancellation</a> - how to implement cancellation
4444
* behaviour.</li>
4545
* </ul>
4646
*
47-
* <a name="example"></a>
47+
* <a id="DirectoryWalker_example"></a>
4848
* <h3>1. Example Implementation</h3>
4949
*
5050
* There are many possible extensions, for example, to delete all
@@ -81,7 +81,7 @@
8181
* }
8282
* </pre>
8383
*
84-
* <a name="filter"></a>
84+
* <a id="DirectoryWalker_filter"></a>
8585
* <h3>2. Filter Example</h3>
8686
*
8787
* Choosing which directories and files to process can be a key aspect
@@ -148,7 +148,7 @@
148148
* This is much simpler than the previous example, and is why it is the preferred
149149
* option for filtering.
150150
*
151-
* <a name="cancel"></a>
151+
* <a id="DirectoryWalker_cancel"></a>
152152
* <h3>3. Cancellation</h3>
153153
*
154154
* The DirectoryWalker contains some of the logic required for cancel processing.
@@ -172,16 +172,16 @@
172172
* <p>
173173
* Two possible scenarios are envisaged for cancellation:
174174
* <ul>
175-
* <li><a href="#external">3.1 External / Multi-threaded</a> - cancellation being
175+
* <li><a href="#DirectoryWalker_external">3.1 External / Multi-threaded</a> - cancellation being
176176
* decided/initiated by an external process.</li>
177-
* <li><a href="#internal">3.2 Internal</a> - cancellation being decided/initiated
177+
* <li><a href="#DirectoryWalker_internal">3.2 Internal</a> - cancellation being decided/initiated
178178
* from within a DirectoryWalker implementation.</li>
179179
* </ul>
180180
* <p>
181181
* The following sections provide example implementations for these two different
182182
* scenarios.
183183
*
184-
* <a name="external"></a>
184+
* <a id="DirectoryWalker_external"></a>
185185
* <h4>3.1 External / Multi-threaded</h4>
186186
*
187187
* This example provides a public <code>cancel()</code> method that can be
@@ -213,7 +213,7 @@
213213
* }
214214
* </pre>
215215
*
216-
* <a name="internal"></a>
216+
* <a id="DirectoryWalker_internal"></a>
217217
* <h4>3.2 Internal</h4>
218218
*
219219
* This shows an example of how internal cancellation processing could be implemented.

0 commit comments

Comments
 (0)