Skip to content
Snippets Groups Projects
Commit e4667436 authored by Gwenaelle ABEILLE's avatar Gwenaelle ABEILLE
Browse files

remove system.out.print

parent 4dafd46a
Branches
Tags
No related merge requests found
......@@ -133,13 +133,14 @@ public final class JepParserRead extends AJepParser {
}
// get results for tango attributes
System.out.println("get value - variables " + variables);
//System.out.println("get value - variables " + variables);
for (final String variableName : variables.values()) {
System.out.println("#######get variable " + variableName);
//System.out.println("#######get variable " + variableName);
final AttributeResult r = dataSource.getResult(sourceName, variableName);
System.out.println(variableName + " has result " + r + "\n");
// System.out.println(variableName + " has result " + r + "\n");
if (r != null) {
final Object value = r.getValue();
//System.out.println("xxxx get value "+ value.getClass());
final DevFailed e = r.getError();
if (e != null && attributes.containsValue(variableName)) {
// throw errors only for variables used in this expression
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment