Remove valid compound check

This commit is contained in:
Jordan Sherer 2019-02-16 17:47:07 -05:00
parent 35be0fcc29
commit 538c70d158

View File

@ -1166,8 +1166,6 @@ bool Varicode::isValidCallsign(const QString &callsign, bool *pIsCompound){
if(match.hasMatch() && (match.capturedLength() == callsign.length())){
bool isValid = isValidCompoundCallsign(match.capturedRef(0));
qDebug() << "is valid compound??" << match.capturedRef(0) << isValid;
if(pIsCompound) *pIsCompound = isValid;
return isValid;
}