fix(parser): remove mandatory period requirement for sign text

This commit is contained in:
2026-02-04 22:12:52 -05:00
parent e8e4e35b6e
commit 02c53849cf

View File

@@ -58,11 +58,6 @@ public class SignParser {
// concatenate all lines with spaces
String fullText = String.join(" ", lines);
// REQUIREMENT: must contain "." to be parsed as a shop
if (!fullText.contains(".")) {
return null;
}
// normalize text
String normalized = normalize(fullText);