Fix Javadoc @code tags

Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
Johnny Lim
2025-01-30 13:33:42 +09:00
parent d4030a87e2
commit 042b78f609
8 changed files with 14 additions and 14 deletions

View File

@@ -133,7 +133,7 @@ public abstract class AbstractJsonHttpMessageConverter extends AbstractGenericHt
/**
* Template method that reads the JSON-bound object from the given {@link Reader}.
* @param resolvedType the resolved generic type
* @param reader the {@code} Reader to use
* @param reader the {@code Reader} to use
* @return the JSON-bound object
* @throws Exception in case of read/parse failures
*/
@@ -143,7 +143,7 @@ public abstract class AbstractJsonHttpMessageConverter extends AbstractGenericHt
* Template method that writes the JSON-bound object to the given {@link Writer}.
* @param object the object to write to the output message
* @param type the type of object to write (may be {@code null})
* @param writer the {@code} Writer to use
* @param writer the {@code Writer} to use
* @throws Exception in case of write failures
*/
protected abstract void writeInternal(Object object, @Nullable Type type, Writer writer) throws Exception;