summaryrefslogtreecommitdiff
path: root/app/Report/ReportHtmlLine.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-02-06 18:44:16 +0000
committerGreg Roach <fisharebest@gmail.com>2015-02-06 18:48:22 +0000
commit90f53ee8d1eddc7d943fb7acf8b72ae8bcc77806 (patch)
tree2a53860f3f3ad04096a77e92189be558973aedc9 /app/Report/ReportHtmlLine.php
parentd2cdeb3f83fe4c7421beb5f1ccb2e5e9e64ab477 (diff)
downloadwebtrees-90f53ee8d1eddc7d943fb7acf8b72ae8bcc77806.tar.gz
webtrees-90f53ee8d1eddc7d943fb7acf8b72ae8bcc77806.tar.bz2
webtrees-90f53ee8d1eddc7d943fb7acf8b72ae8bcc77806.zip
Unused code
Diffstat (limited to 'app/Report/ReportHtmlLine.php')
-rw-r--r--app/Report/ReportHtmlLine.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/Report/ReportHtmlLine.php b/app/Report/ReportHtmlLine.php
index a94ff0e3b0..17bb6f89dd 100644
--- a/app/Report/ReportHtmlLine.php
+++ b/app/Report/ReportHtmlLine.php
@@ -40,7 +40,6 @@ class ReportHtmlLine extends ReportBaseLine {
if ($this->y2 == '.') {
$this->y2 = $renderer->getY();
}
- // TODO Non verticle or horizontal lines can use a series of divs absolutely positioned
// Vertical line
if ($this->x1 == $this->x2) {
echo "<div style=\"position:absolute;overflow:hidden;border-", $renderer->alignRTL, ":solid black 1pt;", $renderer->alignRTL, ":", $this->x1, "pt;top:", $this->y1 + 1, "pt;width:1pt;height:", $this->y2 - $this->y1, "pt;\"> </div>\n";