Kaydet (Commit) 9f015df3 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

add comment

Change-Id: Id14dd289f8803378838725fbe08e327c9b1d233d
üst ae1fbbfb
......@@ -109,6 +109,18 @@ public abstract class AbstractReportElementLayoutController
(AbstractReportElementLayoutController) clone();
alc.state = AbstractReportElementLayoutController.FINISHED;
return alc;
// That's how this method is implemented in classes of pentaho itself;
// I'm not sure why we do something different, but I haven't been able
// to pinpoint a bug attributable to the above implementation.
// final LayoutController parent = getParent();
// if (parent == null)
// {
// // skip to the next step ..
// throw new IllegalStateException("There is no parent to join with. " +
// "This should not happen in a sane environment!");
// }
// return parent.join(getFlowController());
}
protected abstract LayoutController delegateContentGeneration(final ReportTarget target)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment