Skip to content

Commit

Permalink
Merge pull request #31 from nlevitt/proxy-port-configurable
Browse files Browse the repository at this point in the history
make http proxy port configurable in cxml, avoiding this: org.springfram...
  • Loading branch information
kngenie committed Jan 23, 2014
2 parents fafcc1e + c5c8788 commit b1b2f2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ public Integer getHttpProxyPort() {
/**
* Proxy port (set only if needed).
*/
public void setHttpProxyPort(int port) {
kp.put("httpProxyPort",port);
public void setHttpProxyPort(Integer port) {
kp.put("httpProxyPort", port);
}

public String getHttpProxyUser() {
Expand Down

0 comments on commit b1b2f2b

Please sign in to comment.