Internal method - remove unthrown exception

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1571351 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2014-02-24 17:05:07 +00:00
parent 425d4941fa
commit 92e522db4f
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ final class NTLMEngineImpl implements NTLMEngine {
* The domain to authenticate with. * The domain to authenticate with.
* @return String the message to add to the HTTP request header. * @return String the message to add to the HTTP request header.
*/ */
String getType1Message(final String host, final String domain) throws NTLMEngineException { String getType1Message(final String host, final String domain) {
return new Type1Message(domain, host).getResponse(); return new Type1Message(domain, host).getResponse();
} }