Fix checkstyle in Prober (#221)

This commit is contained in:
gbrodman 2019-08-09 14:10:36 -04:00 committed by GitHub
parent ab73bd588f
commit efcd57eea4

View file

@ -44,12 +44,13 @@ public class WebWhoisModule {
private static final String HTTP_PROTOCOL_NAME = "http"; private static final String HTTP_PROTOCOL_NAME = "http";
private static final String HTTPS_PROTOCOL_NAME = "https"; private static final String HTTPS_PROTOCOL_NAME = "https";
private static final int HTTP_WHOIS_PORT = 80;
private static final int HTTPS_WHOIS_PORT = 443;
/** /**
* Standard length of messages used by Proxy. Equates to 0.5 MB. * Standard length of messages used by Proxy. Equates to 0.5 MB.
*/ */
private static final int maximumMessageLengthBytes = 512 * 1024; private static final int maximumMessageLengthBytes = 512 * 1024;
private final int HTTP_WHOIS_PORT = 80;
private final int HTTPS_WHOIS_PORT = 443;
/** /**
* {@link Provides} only step used in WebWhois sequence. * {@link Provides} only step used in WebWhois sequence.