2025-04-22 XLDocument: removed a leftover debug message

This commit is contained in:
Lars Uffmann 2025-04-22 11:17:45 +02:00
parent 9d673a34e5
commit 86af3b043f
No known key found for this signature in database

View File

@ -1162,7 +1162,6 @@ bool XLDocument::validateSheetName(std::string sheetName, bool throwOnInvalid)
using namespace std::literals::string_literals;
bool valid = true;
std::cout << "validating sheet name " << sheetName << std::endl;
try {
if (sheetName.length() > 31)
throw "contain more than 31 characters"s;