Skip to content

Commit

Permalink
added @nullable hint for proxy server
Browse files Browse the repository at this point in the history
  • Loading branch information
bbottema committed Nov 5, 2017
1 parent bb725f2 commit 2d82ff0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public class MailSender {
* Intermediary SOCKS5 relay server that acts as bridge between JavaMail and remote proxy (since JavaMail only supports anonymous SOCKS proxies).
* Only set when {@link ProxyConfig} is provided with authentication details.
*/
@Nullable
private AnonymousSocks5Server proxyServer = null;

/**
Expand Down Expand Up @@ -448,7 +449,7 @@ public synchronized void setSessionTimeout(final int sessionTimeout) {
public synchronized void setTransportModeLoggingOnly(final boolean transportModeLoggingOnly) {
this.transportModeLoggingOnly = transportModeLoggingOnly;
}

/**
* @return {@link #transportModeLoggingOnly}
*/
Expand Down

0 comments on commit 2d82ff0

Please # to comment.