From d843950731c41d054981ff2dbf5f1d52edf3b380 Mon Sep 17 00:00:00 2001 From: Eric Cochran Date: Fri, 15 Feb 2019 17:08:46 -0800 Subject: [PATCH] Make checkstyle happy on JsonReader column width. (#811) --- moshi/src/main/java/com/squareup/moshi/JsonReader.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/moshi/src/main/java/com/squareup/moshi/JsonReader.java b/moshi/src/main/java/com/squareup/moshi/JsonReader.java index 1c3b124..ecd95cb 100644 --- a/moshi/src/main/java/com/squareup/moshi/JsonReader.java +++ b/moshi/src/main/java/com/squareup/moshi/JsonReader.java @@ -478,7 +478,8 @@ public abstract class JsonReader implements Closeable { * Returns a new {@code JsonReader} that can read data from this {@code JsonReader} without * consuming it. The returned reader becomes invalid once this one is next read or closed. * - *

For example, we can use {@code peekJson()} to lookahead and read the same data multiple times. + *

For example, we can use {@code peekJson()} to lookahead and read the same data multiple + * times. * *

 {@code
    *