Skip to content

Commit 08a2820

Browse files
committed
Remove tautologous condition
1 parent 1d9fdd6 commit 08a2820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fclient/request.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ func isSafeInHTTPQuotedString(text string) bool { // nolint: gocyclo
182182
continue
183183
case 0x5D <= c && c <= 0x7E:
184184
continue
185-
case 0x80 <= c && c <= 0xFF:
185+
case 0x80 <= c:
186186
continue
187187
default:
188188
return false

0 commit comments

Comments
 (0)