Skip to content
Snippets Groups Projects
Commit dfc43247 authored by felmer's avatar felmer
Browse files

SSDM-6043: toString(): only the keys (no values)

parent eaa0113a
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,7 @@ public class QueryExecutionOptions implements Serializable ...@@ -52,7 +52,7 @@ public class QueryExecutionOptions implements Serializable
@Override @Override
public String toString() public String toString()
{ {
return getClass().getSimpleName() + ": parameters=" + parameters; return getClass().getSimpleName() + ": parameterKeys=" + parameters.keySet();
} }
} }
...@@ -66,7 +66,7 @@ public class SqlExecutionOptions implements Serializable ...@@ -66,7 +66,7 @@ public class SqlExecutionOptions implements Serializable
@Override @Override
public String toString() public String toString()
{ {
return getClass().getSimpleName() + ": databaseId=" + databaseId + ", parameters=" + parameters; return getClass().getSimpleName() + ": databaseId=" + databaseId + ", parameterKeys=" + parameters.keySet();
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment