Skip to content
Snippets Groups Projects
Unverified Commit 7aa11f13 authored by Daniel's avatar Daniel
Browse files

MAINT: Partial undoing of commit 1194510b.

Commit 1194510b was: "ENH: Better Benchmark output."
parent 22875b2f
Branches
Tags
No related merge requests found
...@@ -364,7 +364,12 @@ public abstract class TransactionBenchmark implements Serializable { ...@@ -364,7 +364,12 @@ public abstract class TransactionBenchmark implements Serializable {
public Element toElement() { public Element toElement() {
if (isActive) { if (isActive) {
final Element el = new JdomConverter().convert(this); final Element el = new JdomConverter().convert(this);
return el.setName(el.getName() + ".TransactionBenchmark"); // String name = el.getName();
// if (name != "TransactionBenchmark") {
// name = name + ".TransactionBenchmark";
// }
// return el.setName(name);
return el.setName("TransactionBenchmark");
} else { } else {
final Element ret = new Element("TransactionBenchmark"); final Element ret = new Element("TransactionBenchmark");
ret.setAttribute("info", "TransactionBenchmark is disabled."); ret.setAttribute("info", "TransactionBenchmark is disabled.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment