From 40f47ccd4e6fcfa76cb0449e95cf6e21c60dd2a7 Mon Sep 17 00:00:00 2001
From: Jeremy Long
Date: Wed, 22 Jan 2014 07:43:08 -0500
Subject: [PATCH] updated to remove exception details per issue #46
Former-commit-id: 2482c797c7cc0100271488a42c17833c4f0e2f95
---
.../main/resources/templates/HtmlReport.vsl | 30 -------------------
.../main/resources/templates/XmlReport.vsl | 28 -----------------
2 files changed, 58 deletions(-)
diff --git a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
index e655434eb..c80c7b4e4 100644
--- a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
+++ b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
@@ -522,36 +522,6 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
MD5: $esc.html($dependency.Md5sum)
SHA1: $esc.html($dependency.Sha1sum)
-
- #if ( $dependency.analysisExceptions.size() != 0 )
- #set($cnt=$cnt+1)
-
diff --git a/dependency-check-core/src/main/resources/templates/XmlReport.vsl b/dependency-check-core/src/main/resources/templates/XmlReport.vsl
index 97b019697..8d29a3498 100644
--- a/dependency-check-core/src/main/resources/templates/XmlReport.vsl
+++ b/dependency-check-core/src/main/resources/templates/XmlReport.vsl
@@ -66,34 +66,6 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
#end
-#end
-#if ( $dependency.analysisExceptions.size() != 0 )
-
-#foreach($ex in $dependency.analysisExceptions)
-
- $esc.xml($ex.message)
-#if ( $ex.stackTrace )
-
-#foreach ($st in $ex.stackTrace)
- $esc.xml($st)
-#end
-
-#end
-#if ( $ex.cause )
-
- $esc.xml($ex.cause.message)
-#if ( $ex.cause.stackTrace )
-
-#foreach ($st in $ex.cause.stackTrace)
- $esc.xml($st)
-#end
-
-#end
-
-#end
-
-#end
-
#end
#foreach($evidence in $dependency.getEvidenceUsed())