getThenSendPassword method

void getThenSendPassword()

Calls sendPassword() if getPassword succeeds.

Implementation

void getThenSendPassword() {
  if (getPassword != null && (pw = getPassword()) != null) sendPassword();
}