>FromYourCode();

All the sources codes "It won't work"

Java
 June 25 2016 at 01:30
#290
		 if (intAnswer>-1) {
			 if (intAnswer == 0)
				 return SendResult.NoAuth;
			 else {
				 this.State = NetStateEnum.connected;
				 return SendResult.Success;
			 }
		 } else {
			 return SendResult.ProtocolError;
		 }
Java
 June 15 2016 at 01:30
#280
if (fName != null){
    // Some code
}else if (fName == null){
    // Some other code
}