Skip to content

Commit cf2a4bb

Browse files
committed
fix
1 parent 5cb66f7 commit cf2a4bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/main/java/org/asynchttpclient/config/AsyncHttpClientConfigHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public long getLong(String key) {
8181
return Long.parseLong(getString(key));
8282
}
8383

84-
public int getInteger(String key) {
84+
public Integer getInteger(String key) {
8585
String s = getString(key);
8686
return s != null ? Integer.valueOf(s) : null;
8787
}

0 commit comments

Comments
 (0)