From 10a40bfcaf460d372f743e9226a38131994205e8 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Wed, 5 Mar 2014 09:28:13 +0100 Subject: [PATCH] Removed commented out code. --- src/main/scala/view/Asciidoc.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/scala/view/Asciidoc.scala b/src/main/scala/view/Asciidoc.scala index 9404f7abf..5c131c491 100644 --- a/src/main/scala/view/Asciidoc.scala +++ b/src/main/scala/view/Asciidoc.scala @@ -46,7 +46,6 @@ object Asciidoc { case tag: TagNode if tag.getName == "a" => Option(tag.getAttributeByName("href")) foreach { href => if (exceptionPrefixes.forall(p => !href.startsWith(p))) { - // if (!href.startsWith("/") && !href.startsWith("http://") && !href.startsWith("https://")) { tag.addAttribute("href", s"${urlPrefix}${href}") } }