*
* @param type the content type
*/
+ @SuppressWarnings("deprecation")
public void setContentType(String type) {
int semicolonIndex = -1;
while (index != -1) {
semicolonIndex = index;
index++;
+ // Yes, isSpace() is deprecated but it does exactly what we need
while (index < len && Character.isSpace(type.charAt(index))) {
index++;
}
recycledProcessors.clear();
}
+ @Override
public SSLImplementation getSslImplementation() {
return proto.sslImplementation;
}
return global;
}
+ @Override
public SSLImplementation getSslImplementation() {
return proto.sslImplementation;
}