Skip to content

Commit 3ff1c67

Browse files
authored
removed default value for custom http class
1 parent 1838f41 commit 3ff1c67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/src/main/java/com/cybersource/ws/client/MerchantConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public MerchantConfig(Properties _props, String _merchantID)
261261
logFilename = getProperty(merchantID, "logFilename");
262262
logMaximumSize = getIntegerProperty(merchantID, "logMaximumSize", 10);
263263
useHttpClient = getBooleanProperty(merchantID, "useHttpClient", ConnectionHelper.getDefaultUseHttpClient());
264-
customHttpClass = getProperty(merchantID, "customHttpClass"," ");
264+
customHttpClass = getProperty(merchantID, "customHttpClass");
265265
timeout = getIntegerProperty(merchantID, "timeout", DEFAULT_TIMEOUT);
266266
proxyHost = getProperty(merchantID, "proxyHost");
267267
proxyPort = getIntegerProperty(merchantID, "proxyPort", DEFAULT_PROXY_PORT);

0 commit comments

Comments
 (0)