amazon-archives / amazon-cognito-identity-js

Amazon Cognito Identity SDK for JavaScript
Other
986 stars 452 forks source link

if false ==> noop #618

Closed ctranstrum closed 6 years ago

ctranstrum commented 6 years ago

Code of the form:

flag = true;
if (false) {
  flag = false;
}

can only result in flag being true.