From b4620b24b3fb5f22d3c43cc95579f2c4e2cc20f6 Mon Sep 17 00:00:00 2001 From: Sara Damiano Date: Thu, 11 Jul 2019 16:38:10 -0400 Subject: [PATCH] Fixed unused variable --- src/TinyGsmClientSIM800.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/TinyGsmClientSIM800.h b/src/TinyGsmClientSIM800.h index 02a53b6..e29c38e 100644 --- a/src/TinyGsmClientSIM800.h +++ b/src/TinyGsmClientSIM800.h @@ -709,7 +709,6 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK() * NTP server functions */ boolean isValidNumber(String str) { - boolean isNum = false; if(!(str.charAt(0) == '+' || str.charAt(0) == '-' || isDigit(str.charAt(0)))) return false; for(byte i=1;i < str.length(); i++) {