From 5b910a87c38386e870eba1f3f8154db2de4df026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Mon, 26 Oct 2020 20:09:51 +0100 Subject: [PATCH] Polishing --- .../springframework/http/codec/protobuf/ProtobufDecoder.java | 2 +- .../springframework/http/codec/protobuf/ProtobufEncoder.java | 2 +- .../http/codec/protobuf/ProtobufHttpMessageWriter.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufDecoder.java b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufDecoder.java index 0e3739ae6e2..2ba3a8da94c 100644 --- a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufDecoder.java +++ b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufDecoder.java @@ -67,7 +67,7 @@ import org.springframework.util.MimeType; * {@code "application/x-protobuf"} and {@code "application/octet-stream"} with * the official {@code "com.google.protobuf:protobuf-java"} library. * - * @author Sébastien Deleuze + * @author Sebastien Deleuze * @since 5.1 * @see ProtobufEncoder */ diff --git a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufEncoder.java b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufEncoder.java index 3d7b3fe0320..13f17872f09 100644 --- a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufEncoder.java +++ b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufEncoder.java @@ -51,7 +51,7 @@ import org.springframework.util.MimeType; * {@code "application/x-protobuf"} and {@code "application/octet-stream"} with the official * {@code "com.google.protobuf:protobuf-java"} library. * - * @author Sébastien Deleuze + * @author Sebastien Deleuze * @since 5.1 * @see ProtobufDecoder */ diff --git a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufHttpMessageWriter.java b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufHttpMessageWriter.java index 0825637b9d8..8a9bddcd332 100644 --- a/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufHttpMessageWriter.java +++ b/spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufHttpMessageWriter.java @@ -45,7 +45,7 @@ import org.springframework.util.ConcurrentReferenceHashMap; *

For {@code HttpMessageReader}, just use * {@code new DecoderHttpMessageReader(new ProtobufDecoder())}. * - * @author Sébastien Deleuze + * @author Sebastien Deleuze * @since 5.1 * @see ProtobufEncoder */