Merge pull request #403 from pingtimeout/patch-1

Remove extraneous System.out.println statement
This commit is contained in:
Jonathan Shook 2022-01-14 11:30:26 -06:00 committed by GitHub
commit 55c90498c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,6 @@ public class RawStmtDef extends RawStmtFields {
} else if (found.size() > 1) {
throw new BasicError("You used " + found + " as an op name, but only one of these is allowed at a time.");
} else if ((getName() == null || getName().isEmpty()) && op == null && map.size() > 0) {
System.out.println("here");
Map.Entry<String, Object> first = map.entrySet().iterator().next();
setName(first.getKey());
setOp(first.getValue());