Skip to content

Commit

Permalink
Javadoc: Use semantic tag <strong> instead of style tag <b>
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 15, 2024
1 parent 053478c commit 5fbc170
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface RandomAccessContent extends DataOutput, DataInput, Closeable {
/**
* Gets the input stream.
* <p>
* <b>Notice: If you use {@link #seek(long)} you have to re-get the InputStream</b>
* <strong>Notice: If you use {@link #seek(long)} you have to re-get the InputStream</strong>
* </p>
*
* @return the InputStream.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* This implementation never ever caches a single file.
* </p>
* <p>
* <b>Notice</b>: if you use resolveFile(uri) multiple times with the same path, the system will always create a new
* <strong>Notice</strong>: if you use resolveFile(uri) multiple times with the same path, the system will always create a new
* instance. Changes on one instance of this file are not seen by the others.
* </p>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public AgeFileFilter(final long cutoff, final boolean acceptOlder) {
* Checks to see if the last modification of the file matches cutoff favorably.
* <p>
* If last modification time equals cutoff and newer files are required, file
* <b>IS NOT</b> selected. If last modification time equals cutoff and older
* files are required, file <b>IS</b> selected.
* <strong>IS NOT</strong> selected. If last modification time equals cutoff and older
* files are required, file <strong>IS</strong> selected.
* </p>
*
* @param fileInfo the File to check
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* </pre>
*
* <p>
* <b>N.B.</b> For read-only files, use
* <strong>N.B.</strong> For read-only files, use
* {@code CanReadFileFilter.READ_ONLY}.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ public SizeFileFilter(final long size, final boolean acceptLarger) {
/**
* Checks to see if the size of the file is favorable.
* <p>
* If size equals threshold and smaller files are required, file <b>IS NOT</b>
* If size equals threshold and smaller files are required, file <strong>IS NOT</strong>
* selected. If size equals threshold and larger files are required, file
* <b>IS</b> selected.
* <strong>IS</strong> selected.
* </p>
* <p>
* Non-existing files return always false (will never be accepted).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public int hashCode() {
* the VFS host.
* </p>
* <p>
* When used, the proxy username ({@linkplain #setProxyUser}) and hostname ({@linkplain #setProxyHost}) <b>must</b>
* When used, the proxy username ({@linkplain #setProxyUser}) and hostname ({@linkplain #setProxyHost}) <strong>must</strong>
* be set. Optionally, the command ({@linkplain #setProxyCommand}), password ({@linkplain #setProxyPassword}) and
* connection options ({@linkplain #setProxyOptions}) can be set.
* </p>
Expand Down

0 comments on commit 5fbc170

Please sign in to comment.