Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-03-17 08:15:10 +0000
committerSravan Kumar Lakkimsetti2017-03-17 08:15:10 +0000
commit17cd28dec62fd0f3bf7a71606ca657bd003db912 (patch)
tree0fec0d961625d8cee115800ab341e1bc9802da48
parent63204c64fdb2604821cf94d5b6f33ab2029db731 (diff)
downloadeclipse.platform.releng.aggregator-17cd28dec62fd0f3bf7a71606ca657bd003db912.tar.gz
eclipse.platform.releng.aggregator-17cd28dec62fd0f3bf7a71606ca657bd003db912.tar.xz
eclipse.platform.releng.aggregator-17cd28dec62fd0f3bf7a71606ca657bd003db912.zip
Bug 513792 - Java internals warning is repeated multiple times in the
jdeps report Change-Id: I6e39a0fd0657dc9fd63bc533fa89965d393068af Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xproduction/reports/jdepsReport.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/reports/jdepsReport.sh b/production/reports/jdepsReport.sh
index d5653a20b..fc917da4c 100755
--- a/production/reports/jdepsReport.sh
+++ b/production/reports/jdepsReport.sh
@@ -53,7 +53,7 @@ do
if [ $fileSize -gt 0 ]
then
echo -e "\n###### Start of Java internal API usage report for $(basename ${i}) \n">> ${outputFile}
- cat ${outputFile}.interim >> ${outputFile}
+ head -n-5 ${outputFile}.interim >> ${outputFile}
echo -e "\n###### End of Java internal API usage report for $(basename ${i}) \n">> ${outputFile}
echo -e "\n" >> ${outputFile}
fi

Back to the top