Fix JavaDoc 🎉

This commit is contained in:
Harald Kuhr
2026-03-10 22:42:39 +01:00
parent 0a717ea0af
commit 9ca9569537

View File

@@ -368,13 +368,15 @@ public final class IIOUtil {
* Copies all the standard param values from source to destination.
* <p>
* Typical use (in some imaginary {@code FooImageWriter} class):
* </p>
*
* <pre>
* ImageWriteParam param = ...
* FooImageWriteparam fooParam = param instanceof FooImageWriteParam
* ? (FooImageWriteParam) param
* : copyStandardParams(param, getDefaultWriteParam());
* </pre>
* </p>
*
* May also be useful for {@code ImageReader}s that delegate reading to other plugins
* (like a TIFF plugin delegating JPEG format decoding to a {@code JPEGImageReader}).
*