Skip to content

Commit 25ad44d

Browse files
Fix linter error
1 parent e1bbc29 commit 25ad44d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google-http-client/src/main/java/com/google/api/client/util/escape/CharEscapers.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ public static String escapeUriPathWithoutReserved(String value) {
189189

190190
/**
191191
* Escapes a URI path but retains all reserved and percent-encoded characters. That is the same as
192-
* {@link #escapeUriPathWithoutReserved(String)} except that it also escapes percent encoded parts.
192+
* {@link #escapeUriPathWithoutReserved(String)} except that it also escapes percent encoded
193+
* parts.
193194
*/
194195
public static String escapeUriPathWithoutReservedAndPercentEncoded(String value) {
195196
return URI_RESERVED_AND_PERCENT_ENCODED_ESCAPER.escape(value);

0 commit comments

Comments
 (0)