Skip to content

Commit d665999

Browse files
committed
mark parameter as final
1 parent 1c72bb2 commit d665999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/darksci/pardot/api/rest/HttpClientRestClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ private <T> T submitRequest(final Request request, final ResponseHandler<T> resp
246246
* @param <T> The type that ResponseHandler returns.
247247
* @return Parsed response.
248248
*/
249-
private <T> T submitRequest(final String url, Map<String, String> postParams, final ResponseHandler<T> responseHandler) throws IOException {
249+
private <T> T submitRequest(final String url, final Map<String, String> postParams, final ResponseHandler<T> responseHandler) throws IOException {
250250
try {
251251
final HttpPost post = new HttpPost(url);
252252

0 commit comments

Comments
 (0)