Remove extraneous System.out.println statement

It was probably committed by accident
This commit is contained in:
Pierre Laporte 2022-01-14 16:37:40 +01:00 committed by GitHub
parent 5cbb320cbc
commit 7f9d8e594a
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) { } 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."); 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) { } else if ((getName() == null || getName().isEmpty()) && op == null && map.size() > 0) {
System.out.println("here");
Map.Entry<String, Object> first = map.entrySet().iterator().next(); Map.Entry<String, Object> first = map.entrySet().iterator().next();
setName(first.getKey()); setName(first.getKey());
setOp(first.getValue()); setOp(first.getValue());