Skip to content

Commit f3bff6b

Browse files
author
Stephane Landelle
committed
KMN
1 parent 32ddccb commit f3bff6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/ning/http/util/AsyncHttpProviderUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ public static int convertExpireField(String timestring) throws Exception {
533533
}
534534

535535
private final static String removeQuote(String s) {
536-
if (!s.isEmpty()) {
536+
if (MiscUtil.isNonEmpty(s)) {
537537
if (s.charAt(0) == '"')
538538
s = s.substring(1);
539539

0 commit comments

Comments
 (0)