Remove System.out.println

This commit is contained in:
김선우 2025-01-19 17:21:01 +09:00
parent 10a7b1b035
commit 9c3c6271a3

View file

@ -55,7 +55,6 @@ public class LimboResultSet {
}
lastStepResult = this.statement.step();
System.out.println(lastStepResult);
pastLastRow = lastStepResult == null || lastStepResult.isDone();
return !pastLastRow;
}