Declared exception is not actually thrown by the method.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1725782 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2016-01-20 19:19:30 +00:00
parent 1d9f4dad93
commit 1b2003789b
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ final class NTLMEngineImpl implements NTLMEngine {
* The domain to authenticate with.
* @return String the message to add to the HTTP request header.
*/
static String getType1Message(final String host, final String domain) throws NTLMEngineException {
static String getType1Message(final String host, final String domain) {
// For compatibility reason do not include domain and host in type 1 message
//return new Type1Message(domain, host).getResponse();
return TYPE_1_MESSAGE.getResponse();