From 18cf4fa190c89e6c6fac5a2173780a287de3e29b Mon Sep 17 00:00:00 2001 From: "Thomas E. Enebo" Date: Tue, 14 May 2024 08:41:40 -0400 Subject: [PATCH] Remove extra print --- src/org/joni/Matcher.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/org/joni/Matcher.java b/src/org/joni/Matcher.java index 3bab0de..314b276 100644 --- a/src/org/joni/Matcher.java +++ b/src/org/joni/Matcher.java @@ -658,7 +658,6 @@ static void debugSearch(String name, int textP, int textEnd, int textRange) { } public void setTimeout(long timeout) { - System.out.println("TIMEOUT = " + timeout); this.timeout = timeout; } }