comment out https check for jdk1.6

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1741352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2016-04-27 22:17:17 +00:00
parent 9fa0c96a63
commit 12aa832839
1 changed files with 2 additions and 2 deletions

View File

@ -482,7 +482,7 @@ under the License.
<sequential>
<local name="exists"/>
<available file="@{dest}" property="exists"/>
<fail unless:true="${exists}"
<!--fail unless:true="${exists}"
message="Java version might be uncapable to download https URLs - see https://stackoverflow.com/questions/6851461/java-why-does-ssl-handshake-give-could-not-generate-dh-keypair-exception">
<condition>
<and>
@ -490,7 +490,7 @@ under the License.
<contains string="@{src}" substring="https"/>
</and>
</condition>
</fail>
</fail-->
<get src="@{src}" dest="@{dest}" unless:true="${exists}"/>
</sequential>
</macrodef>