Modified: ant/site/ant/production/manual/Types/namespace.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/namespace.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/namespace.html (original)
+++ ant/site/ant/production/manual/Types/namespace.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
@@ -64,8 +64,8 @@
       URI of the XML namespace with which the type should be associated:
     </p>
     <pre>
-&lt;typedef resource="org/example/tasks.properties" uri="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
-&lt;my:task xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+&lt;typedef resource="org/example/tasks.properties" 
uri="http://example.org/tasks"/&gt;
+&lt;my:task xmlns:my="http://example.org/tasks"&gt;
     ...
 &lt;/my:task&gt;</pre>
     <p>As the above example demonstrates, the namespace URI needs to be 
specified at least
@@ -74,8 +74,8 @@
       the <var>xmlns</var> attribute. This mapping can happen at any level in 
the build file:
     </p>
     <pre>
-&lt;project name="test" xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
-    &lt;typedef resource="org/example/tasks.properties" uri="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
+&lt;project name="test" xmlns:my="http://example.org/tasks"&gt;
+    &lt;typedef resource="org/example/tasks.properties" 
uri="http://example.org/tasks"/&gt;
     &lt;my:task&gt;
         ...
     &lt;/my:task&gt;
@@ -86,8 +86,8 @@
     </p>
     <pre>
 &lt;project name="test"&gt;
-    &lt;typedef resource="org/example/tasks.properties" uri="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
-    &lt;task xmlns="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+    &lt;typedef resource="org/example/tasks.properties" 
uri="http://example.org/tasks"/&gt;
+    &lt;task xmlns="http://example.org/tasks"&gt;
         ...
     &lt;/task&gt;
 &lt;/project&gt;</pre>
@@ -113,8 +113,8 @@
       nested <code>config</code> element, the build file snippet would look 
like this:
     </p>
     <pre>
-&lt;typedef resource="org/example/tasks.properties" uri="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
-&lt;my:task xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+&lt;typedef resource="org/example/tasks.properties" 
uri="http://example.org/tasks"/&gt;
+&lt;my:task xmlns:my="http://example.org/tasks"&gt;
     &lt;my:config a="foo" b="bar"/&gt;
     ...
 &lt;/my:task&gt;</pre>
@@ -123,8 +123,8 @@
       script:
     </p>
     <pre>
-&lt;typedef resource="org/example/tasks.properties" uri="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
-&lt;task xmlns="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+&lt;typedef resource="org/example/tasks.properties" 
uri="http://example.org/tasks"/&gt;
+&lt;task xmlns="http://example.org/tasks"&gt;
     &lt;config a="foo" b="bar"/&gt;
     ...
 &lt;/task&gt;</pre>
@@ -134,8 +134,8 @@
     </p>
     <pre>
 &lt;typedef resource="org/example/tasks.properties"
-    uri="<a href="http://example.org/tasks";>http://example.org/tasks</a>"/&gt;
-&lt;my:task xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+    uri="http://example.org/tasks"/&gt;
+&lt;my:task xmlns:my="http://example.org/tasks"&gt;
     &lt;config a="foo" b="bar"/&gt;
     ...
 &lt;/my:task&gt;</pre>
@@ -161,7 +161,7 @@
     <p>
     </p>
     <pre>
-&lt;my:task xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+&lt;my:task xmlns:my="http://example.org/tasks"&gt;
     &lt;my:config a="foo" b="bar"/&gt;
     ...
 &lt;/my:task&gt;</pre>
@@ -169,7 +169,7 @@
       and
     </p>
     <pre>
-&lt;my:task xmlns:my="<a 
href="http://example.org/tasks";>http://example.org/tasks</a>"&gt;
+&lt;my:task xmlns:my="http://example.org/tasks"&gt;
     &lt;my:config my:a="foo" my:b="bar"/&gt;
     ...
 &lt;/my:task&gt;</pre>
@@ -198,8 +198,8 @@
       or <code class="code">addConfigured(Condition)</code> method):
     </p>
     <pre>
-&lt;typedef resource="org/example/conditions.properties" uri="<a 
href="http://example.org/conditions";>http://example.org/conditions</a>"/&gt;
-&lt;condition property="prop" xmlns="<a 
href="http://example.org/conditions";>http://example.org/conditions</a>"&gt;
+&lt;typedef resource="org/example/conditions.properties" 
uri="http://example.org/conditions"/&gt;
+&lt;condition property="prop" xmlns="http://example.org/conditions"&gt;
     &lt;and&gt;
         &lt;available file="bla.txt"/&gt;
         &lt;my:condition a="foo"/&gt;

Modified: ant/site/ant/production/manual/Types/patternset.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/patternset.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/patternset.html (original)
+++ ant/site/ant/production/manual/Types/patternset.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/permissions.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/permissions.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/permissions.html (original)
+++ ant/site/ant/production/manual/Types/permissions.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/propertyset.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/propertyset.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/propertyset.html (original)
+++ ant/site/ant/production/manual/Types/propertyset.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/redirector.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/redirector.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/redirector.html (original)
+++ ant/site/ant/production/manual/Types/redirector.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/regexp.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/regexp.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/regexp.html (original)
+++ ant/site/ant/production/manual/Types/regexp.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/resources.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/resources.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/resources.html (original)
+++ ant/site/ant/production/manual/Types/resources.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
@@ -1277,10 +1277,10 @@ actually be reached.  It assumes that th
 
 <pre>
     mirrors.txt:
-http://best.mirror.example.org/
+https://best.mirror.example.org/
 http://second.best.mirror.example.org/mirror/of/best/
 https://yet.another.mirror/
-http://the.original.site/</pre>
+https://the.original.site/</pre>
 
 <pre>
 &lt;copy todir="${target}"&gt;

Modified: ant/site/ant/production/manual/Types/selectors-program.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/selectors-program.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/selectors-program.html (original)
+++ ant/site/ant/production/manual/Types/selectors-program.html Thu Sep  5 
04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/selectors.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/selectors.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/selectors.html (original)
+++ ant/site/ant/production/manual/Types/selectors.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/tarfileset.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/tarfileset.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/tarfileset.html (original)
+++ ant/site/ant/production/manual/Types/tarfileset.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
@@ -134,7 +134,7 @@ and ownership attributes.</p>
 &lt;copy todir="some-dir"&gt;
  &lt;tarfileset includes="lib/**"&gt;
    &lt;bzip2resource&gt;
-     &lt;url url="http://example.org/dist/some-archive.tar.bz2"/&gt;
+     &lt;url url="https://example.org/dist/some-archive.tar.bz2"/&gt;
    &lt;/bzip2resource&gt;
  &lt;/tarfileset&gt;
 &lt;/copy&gt;</pre>

Modified: ant/site/ant/production/manual/Types/xmlcatalog.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/xmlcatalog.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/xmlcatalog.html (original)
+++ ant/site/ant/production/manual/Types/xmlcatalog.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/Types/zipfileset.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/Types/zipfileset.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/Types/zipfileset.html (original)
+++ ant/site/ant/production/manual/Types/zipfileset.html Thu Sep  5 04:17:51 
2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/antexternal.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/antexternal.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/antexternal.html (original)
+++ ant/site/ant/production/manual/antexternal.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/anttaskslist.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/anttaskslist.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/anttaskslist.html (original)
+++ ant/site/ant/production/manual/anttaskslist.html Thu Sep  5 04:17:51 2019
@@ -7,7 +7,7 @@
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0
+       https://www.apache.org/licenses/LICENSE-2.0
 
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,

Modified: ant/site/ant/production/manual/api/allclasses-index.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/allclasses-index.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/allclasses-index.html (original)
+++ ant/site/ant/production/manual/api/allclasses-index.html Thu Sep  5 
04:17:51 2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>All Classes (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>
@@ -1450,7 +1450,7 @@ $('.navPadding').css('padding-top', $('.
 <td class="colFirst"><a href="org/apache/tools/ant/util/DateUtils.html" 
title="class in org.apache.tools.ant.util">DateUtils</a></td>
 <th class="colLast" scope="row">
 <div class="block">Helper methods to deal with date/time formatting with a 
specific
- defined format (<a href="http://www.w3.org/TR/NOTE-datetime";>ISO8601</a>)
+ defined format (<a href="https://www.w3.org/TR/NOTE-datetime";>ISO8601</a>)
  or a correct pluralization of elapsed time in minutes and seconds.</div>
 </th>
 </tr>
@@ -6766,7 +6766,7 @@ $('.navPadding').css('padding-top', $('.
 <td class="colFirst"><a 
href="org/apache/tools/ant/taskdefs/XSLTProcess.OutputProperty.html" 
title="class in 
org.apache.tools.ant.taskdefs">XSLTProcess.OutputProperty</a></td>
 <th class="colLast" scope="row">
 <div class="block">Specify how the result tree should be output as specified
- in the <a href="http://www.w3.org/TR/xslt#output";>
+ in the <a href="https://www.w3.org/TR/xslt#output";>
  specification</a>.</div>
 </th>
 </tr>

Modified: ant/site/ant/production/manual/api/allclasses.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/allclasses.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/allclasses.html (original)
+++ ant/site/ant/production/manual/api/allclasses.html Thu Sep  5 04:17:51 2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>All Classes (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>

Modified: ant/site/ant/production/manual/api/allpackages-index.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/allpackages-index.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/allpackages-index.html (original)
+++ ant/site/ant/production/manual/api/allpackages-index.html Thu Sep  5 
04:17:51 2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>All Packages (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>

Modified: ant/site/ant/production/manual/api/constant-values.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/constant-values.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/constant-values.html (original)
+++ ant/site/ant/production/manual/api/constant-values.html Thu Sep  5 04:17:51 
2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>Constant Field Values (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>
@@ -4743,19 +4743,33 @@ $('.navPadding').css('padding-top', $('.
 <td class="colLast"><code>"excludeEngines"</code></td>
 </tr>
 <tr class="altColor">
+<td class="colFirst"><a 
id="org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.Constants.LD_XML_ATTR_EXCLUDE_TAGS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/Constants.html#LD_XML_ATTR_EXCLUDE_TAGS">LD_XML_ATTR_EXCLUDE_TAGS</a></code></th>
+<td class="colLast"><code>"excludeTags"</code></td>
+</tr>
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.Constants.LD_XML_ATTR_HALT_ON_FAILURE">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/Constants.html#LD_XML_ATTR_HALT_ON_FAILURE">LD_XML_ATTR_HALT_ON_FAILURE</a></code></th>
 <td class="colLast"><code>"haltOnFailure"</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.Constants.LD_XML_ATTR_INCLUDE_ENGINES">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/Constants.html#LD_XML_ATTR_INCLUDE_ENGINES">LD_XML_ATTR_INCLUDE_ENGINES</a></code></th>
 <td class="colLast"><code>"includeEngines"</code></td>
 </tr>
+<tr class="rowColor">
+<td class="colFirst"><a 
id="org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.Constants.LD_XML_ATTR_INCLUDE_TAGS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/taskdefs/optional/junitlauncher/confined/Constants.html#LD_XML_ATTR_INCLUDE_TAGS">LD_XML_ATTR_INCLUDE_TAGS</a></code></th>
+<td class="colLast"><code>"includeTags"</code></td>
+</tr>
 <tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.Constants.LD_XML_ATTR_LISTENER_RESULT_FILE">
 <!--   -->
@@ -6800,82 +6814,124 @@ $('.navPadding').css('padding-top', $('.
 <td class="colLast"><code>"1.9"</code></td>
 </tr>
 <tr class="altColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.JAVA_10">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_10">JAVA_10</a></code></th>
+<td class="colLast"><code>"10"</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.JAVA_11">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_11">JAVA_11</a></code></th>
+<td class="colLast"><code>"11"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.JAVA_12">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_12">JAVA_12</a></code></th>
+<td class="colLast"><code>"12"</code></td>
+</tr>
+<tr class="rowColor">
 <td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.JAVA_9">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#JAVA_9">JAVA_9</a></code></th>
 <td class="colLast"><code>"9"</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_0">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_0">VERSION_1_0</a></code></th>
 <td class="colLast"><code>10</code></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_1">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_1">VERSION_1_1</a></code></th>
 <td class="colLast"><code>11</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_2">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_2">VERSION_1_2</a></code></th>
 <td class="colLast"><code>12</code></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_3">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_3">VERSION_1_3</a></code></th>
 <td class="colLast"><code>13</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_4">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_4">VERSION_1_4</a></code></th>
 <td class="colLast"><code>14</code></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_5">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_5">VERSION_1_5</a></code></th>
 <td class="colLast"><code>15</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_6">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_6">VERSION_1_6</a></code></th>
 <td class="colLast"><code>16</code></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_7">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_7">VERSION_1_7</a></code></th>
 <td class="colLast"><code>17</code></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_8">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_8">VERSION_1_8</a></code></th>
 <td class="colLast"><code>18</code></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a 
id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_1_9">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_1_9">VERSION_1_9</a></code></th>
 <td class="colLast"><code>19</code></td>
 </tr>
+<tr class="altColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_10">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_10">VERSION_10</a></code></th>
+<td class="colLast"><code>100</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_11">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_11">VERSION_11</a></code></th>
+<td class="colLast"><code>110</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_12">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#VERSION_12">VERSION_12</a></code></th>
+<td class="colLast"><code>120</code></td>
+</tr>
 <tr class="rowColor">
 <td class="colFirst"><a id="org.apache.tools.ant.util.JavaEnvUtils.VERSION_9">
 <!--   -->
@@ -7250,7 +7306,7 @@ $('.navPadding').css('padding-top', $('.
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
 <th class="colSecond" scope="row"><code><a 
href="org/apache/tools/ant/util/java15/ProxyDiagnostics.html#DEFAULT_DESTINATION">DEFAULT_DESTINATION</a></code></th>
-<td class="colLast"><code>"http://ant.apache.org/";</code></td>
+<td class="colLast"><code>"https://ant.apache.org/";</code></td>
 </tr>
 </tbody>
 </table>

Modified: ant/site/ant/production/manual/api/deprecated-list.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/deprecated-list.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/deprecated-list.html (original)
+++ ant/site/ant/production/manual/api/deprecated-list.html Thu Sep  5 04:17:51 
2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>Deprecated List (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>
@@ -776,18 +776,72 @@ $('.navPadding').css('padding-top', $('.
 </td>
 </tr>
 <tr class="rowColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava11()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava11()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_1Plus, if 
necessary combined with !assumeJava1_2Plus</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava12()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava12()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_2Plus, if 
necessary combined with !assumeJava1_3Plus</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava13()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava13()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_3Plus, if 
necessary combined with !assumeJava1_4Plus</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava14()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava14()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_4Plus, if 
necessary combined with !assumeJava1_5Plus</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava15()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava15()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_5Plus, if 
necessary combined with !assumeJava1_6Plus</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava16()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava16()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_6Plus, if 
necessary combined with !assumeJava1_7Plus</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava17()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava17()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_7Plus, if 
necessary combined with !assumeJava1_8Plus</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava18()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava18()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava1_8Plus, if 
necessary combined with !assumeJava9Plus</div>
+</td>
+</tr>
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava19()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava19()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #assumeJava9 instead</div>
 </td>
 </tr>
 <tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/compilers/DefaultCompilerAdapter.html#assumeJava9()">org.apache.tools.ant.taskdefs.compilers.DefaultCompilerAdapter.assumeJava9()</a></th>
+<td class="colLast">
+<div class="deprecationComment">since Ant 1.10.7, use assumeJava9Plus, in the 
future if necessary combined with !assumeJava10Plus</div>
+</td>
+</tr>
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Concat.html#setForce(boolean)">org.apache.tools.ant.taskdefs.Concat.setForce&#8203;(boolean)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #setOverwrite instead</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Copy.html#setPreserveLastModified(java.lang.String)">org.apache.tools.ant.taskdefs.Copy.setPreserveLastModified&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -796,126 +850,126 @@ $('.navPadding').css('padding-top', $('.
              consistently let the Introspection mechanism work.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/DefBase.html#setReverseLoader(boolean)">org.apache.tools.ant.taskdefs.DefBase.setReverseLoader&#8203;(boolean)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.
              stop using this attribute</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Ear.html#setEarfile(java.io.File)">org.apache.tools.ant.taskdefs.Ear.setEarfile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use setDestFile(destfile) instead.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Execute.html#getProcEnvironment()">org.apache.tools.ant.taskdefs.Execute.getProcEnvironment()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #getEnvironmentVariables instead</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Execute.html#setSpawn(boolean)">org.apache.tools.ant.taskdefs.Execute.setSpawn&#8203;(boolean)</a></th>
 <td class="colLast">&nbsp;</td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/ExecuteJava.html#setOutput(java.io.PrintStream)">org.apache.tools.ant.taskdefs.ExecuteJava.setOutput&#8203;(PrintStream)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.4.x.
              manage output at the task level.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/FixCRLF.html#setCr(org.apache.tools.ant.taskdefs.FixCRLF.AddAsisRemove)">org.apache.tools.ant.taskdefs.FixCRLF.setCr&#8203;(FixCRLF.AddAsisRemove)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.4.x.
              Use <a 
href="org/apache/tools/ant/taskdefs/FixCRLF.html#setEol(org.apache.tools.ant.taskdefs.FixCRLF.CrLf)"><code>setEol</code></a>
 instead.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Get.html#doGet(int,org.apache.tools.ant.taskdefs.Get.DownloadProgress)">org.apache.tools.ant.taskdefs.Get.doGet&#8203;(int,
 Get.DownloadProgress)</a></th>
 <td class="colLast">
 <div class="deprecationComment">only gets the first configured resource</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Jar.html#setJarfile(java.io.File)">org.apache.tools.ant.taskdefs.Jar.setJarfile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use setDestFile(File) instead.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Javadoc.html#setExtdirs(java.lang.String)">org.apache.tools.ant.taskdefs.Javadoc.setExtdirs&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use the <a 
href="org/apache/tools/ant/taskdefs/Javadoc.html#setExtdirs(org.apache.tools.ant.types.Path)"><code>Javadoc.setExtdirs(Path)</code></a>
 version.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/MacroInstance.html#createDynamicElement(java.lang.String)">org.apache.tools.ant.taskdefs.MacroInstance.createDynamicElement&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/ANTLR.html#setGlib(java.lang.String)">org.apache.tools.ant.taskdefs.optional.ANTLR.setGlib&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since ant 1.6</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/clearcase/ClearCase.html#runS(org.apache.tools.ant.types.Commandline)">org.apache.tools.ant.taskdefs.optional.clearcase.ClearCase.runS&#8203;(Commandline)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use the two arg version instead</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/image/Image.html#processFile(java.io.File)">org.apache.tools.ant.taskdefs.optional.image.Image.processFile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">this method isn't used anymore</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/image/ImageIOTask.html#processFile(java.io.File)">org.apache.tools.ant.taskdefs.optional.image.ImageIOTask.processFile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">this method isn't used anymore</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/jdepend/JDependTask.html#createSourcespath()">org.apache.tools.ant.taskdefs.optional.jdepend.JDependTask.createSourcespath()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/jdepend/JDependTask.html#getSourcespath()">org.apache.tools.ant.taskdefs.optional.jdepend.JDependTask.getSourcespath()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/junit/Enumerations.html#fromArray(T...)">org.apache.tools.ant.taskdefs.optional.junit.Enumerations.fromArray&#8203;(T...)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use 
Collections.enumeration(Arrays.asList(array))</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/junit/Enumerations.html#fromCompound(java.util.Enumeration...)">org.apache.tools.ant.taskdefs.optional.junit.Enumerations.fromCompound&#8203;(Enumeration&lt;?
 extends T&gt;...)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use 
Stream.concat(Collections.list(one).stream(), Collections.list(two).stream())
                  .collect(Collectors.collectingAndThen(Collectors.toList(), 
Collections::enumeration))</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.html#addSysproperty(org.apache.tools.ant.types.Environment.Variable)">org.apache.tools.ant.taskdefs.optional.junit.JUnitTask.addSysproperty&#8203;(Environment.Variable)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since Ant 1.6</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/net/FTP.html#setAction(java.lang.String)">org.apache.tools.ant.taskdefs.optional.net.FTP.setAction&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -925,7 +979,7 @@ $('.navPadding').css('padding-top', $('.
       class.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/net/FTPTask.html#setAction(java.lang.String)">org.apache.tools.ant.taskdefs.optional.net.FTPTask.setAction&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -935,76 +989,76 @@ $('.navPadding').css('padding-top', $('.
       class.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.html#setByLine(java.lang.String)">org.apache.tools.ant.taskdefs.optional.ReplaceRegExp.setByLine&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.
              Use setByLine(boolean).</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/script/ScriptDef.html#executeScript(java.util.Map,java.util.Map)">org.apache.tools.ant.taskdefs.optional.script.ScriptDef.executeScript&#8203;(Map&lt;String,
 String&gt;, Map&lt;String, List&lt;Object&gt;&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.
              Use executeScript(attribute, elements, instance) instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/splash/SplashTask.html#setPassword(java.lang.String)">org.apache.tools.ant.taskdefs.optional.splash.SplashTask.setPassword&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.taskdefs.optional.net.SetProxy</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/splash/SplashTask.html#setPort(java.lang.String)">org.apache.tools.ant.taskdefs.optional.splash.SplashTask.setPort&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.taskdefs.optional.net.SetProxy</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/splash/SplashTask.html#setProxy(java.lang.String)">org.apache.tools.ant.taskdefs.optional.splash.SplashTask.setProxy&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.taskdefs.optional.net.SetProxy</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/splash/SplashTask.html#setUseproxy(boolean)">org.apache.tools.ant.taskdefs.optional.splash.SplashTask.setUseproxy&#8203;(boolean)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.taskdefs.optional.net.SetProxy</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/splash/SplashTask.html#setUser(java.lang.String)">org.apache.tools.ant.taskdefs.optional.splash.SplashTask.setUser&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.taskdefs.optional.net.SetProxy</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/TraXLiaison.html#getSystemId(java.io.File)">org.apache.tools.ant.taskdefs.optional.TraXLiaison.getSystemId&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use org.apache.tools.ant.util.JAXPUtils#getSystemId instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/optional/unix/Symlink.html#deleteSymlink(java.lang.String)">org.apache.tools.ant.taskdefs.optional.unix.Symlink.deleteSymlink&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use <code>Files.delete(Path)</code> 
instead</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/PathConvert.html#setTargetos(java.lang.String)">org.apache.tools.ant.taskdefs.PathConvert.setTargetos&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use the method taking a TargetOs argument instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Property.html#setUserProperty(boolean)">org.apache.tools.ant.taskdefs.Property.setUserProperty&#8203;(boolean)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -1012,28 +1066,28 @@ $('.navPadding').css('padding-top', $('.
              deprecated without replacement.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/SendEmail.html#setMailport(java.lang.Integer)">org.apache.tools.ant.taskdefs.SendEmail.setMailport&#8203;(Integer)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use <a 
href="org/apache/tools/ant/taskdefs/email/EmailTask.html#setMailport(int)"><code>EmailTask.setMailport(int)</code></a>
 instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/SQLExec.html#printResults(java.io.PrintStream)">org.apache.tools.ant.taskdefs.SQLExec.printResults&#8203;(PrintStream)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.
              Use <a 
href="org/apache/tools/ant/taskdefs/SQLExec.html#printResults(java.sql.ResultSet,java.io.PrintStream)"><code>the
 two arg version</code></a> instead.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Tar.html#archiveIsUpToDate(java.lang.String%5B%5D)">org.apache.tools.ant.taskdefs.Tar.archiveIsUpToDate&#8203;(String[])</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              use the two-arg version instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Tar.html#setLongfile(java.lang.String)">org.apache.tools.ant.taskdefs.Tar.setLongfile&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -1043,20 +1097,20 @@ $('.navPadding').css('padding-top', $('.
              the mode in its own class.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Tar.html#setTarfile(java.io.File)">org.apache.tools.ant.taskdefs.Tar.setTarfile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              For consistency with other tasks, please use setDestFile().</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Touch.html#touch(java.io.File)">org.apache.tools.ant.taskdefs.Touch.touch&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Tstamp.CustomFormat.html#setUnit(java.lang.String)">org.apache.tools.ant.taskdefs.Tstamp.CustomFormat.setUnit&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -1067,7 +1121,7 @@ $('.navPadding').css('padding-top', $('.
              class.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Unpack.html#setDest(java.lang.String)">org.apache.tools.ant.taskdefs.Unpack.setDest&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -1077,7 +1131,7 @@ $('.navPadding').css('padding-top', $('.
              the type in its own class.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Unpack.html#setSrc(java.lang.String)">org.apache.tools.ant.taskdefs.Unpack.setSrc&#8203;(String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
@@ -1087,62 +1141,62 @@ $('.navPadding').css('padding-top', $('.
              the type in its own class.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/War.html#setWarfile(java.io.File)">org.apache.tools.ant.taskdefs.War.setWarfile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use setDestFile(File) instead</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/XmlProperty.html#getIncludeSementicAttribute()">org.apache.tools.ant.taskdefs.XmlProperty.getIncludeSementicAttribute()</a></th>
 <td class="colLast"></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/XSLTProcess.html#configureLiaison(java.io.File)">org.apache.tools.ant.taskdefs.XSLTProcess.configureLiaison&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since Ant 1.7</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Zip.html#setFile(java.io.File)">org.apache.tools.ant.taskdefs.Zip.setFile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use setDestFile(File) instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/taskdefs/Zip.html#setZipfile(java.io.File)">org.apache.tools.ant.taskdefs.Zip.setZipfile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.5.x.
              Use setDestFile(File) instead.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/ArchiveFileSet.html#getDirMode()">org.apache.tools.ant.types.ArchiveFileSet.getDirMode()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/ArchiveFileSet.html#getFileMode()">org.apache.tools.ant.types.ArchiveFileSet.getFileMode()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/ArchiveFileSet.html#getFullpath()">org.apache.tools.ant.types.ArchiveFileSet.getFullpath()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/ArchiveFileSet.html#getPrefix()">org.apache.tools.ant.types.ArchiveFileSet.getPrefix()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/CommandlineJava.html#size()">org.apache.tools.ant.types.CommandlineJava.size()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.
@@ -1150,98 +1204,98 @@ $('.navPadding').css('padding-top', $('.
              entire command.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/DataType.html#getCheckedRef()">org.apache.tools.ant.types.DataType.getCheckedRef()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use getCheckedRef(Class)</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/Mapper.html#getRef()">org.apache.tools.ant.types.Mapper.getRef()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since Ant 1.7.1 because a mapper might ref a
              FileNameMapper implementation directly.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/resources/TarResource.html#getGid()">org.apache.tools.ant.types.resources.TarResource.getGid()</a></th>
 <td class="colLast"></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/resources/TarResource.html#getUid()">org.apache.tools.ant.types.resources.TarResource.getUid()</a></th>
 <td class="colLast"></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/types/resources/Union.html#getCollection(boolean)">org.apache.tools.ant.types.resources.Union.getCollection&#8203;(boolean)</a></th>
 <td class="colLast"></td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#append(java.util.Enumeration,java.util.Enumeration)">org.apache.tools.ant.util.CollectionUtils.append&#8203;(Enumeration&lt;E&gt;,
 Enumeration&lt;E&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use 
Stream.concat(Collections.list(e1).stream(), Collections.list(e2).stream())
                  .collect(Collectors.collectingAndThen(Collectors.toList(), 
Collections::enumeration))</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#asCollection(java.util.Iterator)">org.apache.tools.ant.util.CollectionUtils.asCollection&#8203;(Iterator&lt;?
 extends T&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">instantiate a list and use 
forEachRemaining(list::add)</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#asEnumeration(java.util.Iterator)">org.apache.tools.ant.util.CollectionUtils.asEnumeration&#8203;(Iterator&lt;E&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use Collections.enumeration()</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#asIterator(java.util.Enumeration)">org.apache.tools.ant.util.CollectionUtils.asIterator&#8203;(Enumeration&lt;E&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use Collections.list(e).iterator()</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#equals(java.util.Vector,java.util.Vector)">org.apache.tools.ant.util.CollectionUtils.equals&#8203;(Vector&lt;?&gt;,
 Vector&lt;?&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#flattenToString(java.util.Collection)">org.apache.tools.ant.util.CollectionUtils.flattenToString&#8203;(Collection&lt;?&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use 
stream().collect(Collectors.joining(","))</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#frequency(java.util.Collection,java.lang.Object)">org.apache.tools.ant.util.CollectionUtils.frequency&#8203;(Collection&lt;?&gt;,
 Object)</a></th>
 <td class="colLast"></td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/CollectionUtils.html#putAll(java.util.Dictionary,java.util.Dictionary)">org.apache.tools.ant.util.CollectionUtils.putAll&#8203;(Dictionary&lt;?
 super K, ? super V&gt;, Dictionary&lt;? extends K, ? extends V&gt;)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.6.x.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/FileUtils.html#createTempFile(java.lang.String,java.lang.String,java.io.File)">org.apache.tools.ant.util.FileUtils.createTempFile&#8203;(String,
 String, File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since ant 1.7.1 use createTempFile(String, 
String, File,
  boolean, boolean) instead.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/FileUtils.html#getParentFile(java.io.File)">org.apache.tools.ant.util.FileUtils.getParentFile&#8203;(File)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7. Just use 
<code>File.getParentFile()</code> directly.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/FileUtils.html#isSymbolicLink(java.io.File,java.lang.String)">org.apache.tools.ant.util.FileUtils.isSymbolicLink&#8203;(File,
 String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use <code>Files.isSymbolicLink(Path)</code> 
instead</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/FileUtils.html#newFileUtils()">org.apache.tools.ant.util.FileUtils.newFileUtils()</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.
@@ -1249,46 +1303,46 @@ $('.navPadding').css('padding-top', $('.
  FileUtils do not have state.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/JavaEnvUtils.html#getJavaVersionNumber()">org.apache.tools.ant.util.JavaEnvUtils.getJavaVersionNumber()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #getParsedJavaVersion instead</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/ant/util/StringUtils.html#replace(java.lang.String,java.lang.String,java.lang.String)">org.apache.tools.ant.util.StringUtils.replace&#8203;(String,
 String, String)</a></th>
 <td class="colLast">
 <div class="deprecationComment">Use <code>String.replace(CharSequence, 
CharSequence)</code> now.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/tar/TarEntry.html#getGroupId()">org.apache.tools.tar.TarEntry.getGroupId()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #getLongGroupId instead as group ids can be
  bigger than <code>Integer.MAX_VALUE</code></div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/tar/TarEntry.html#getUserId()">org.apache.tools.tar.TarEntry.getUserId()</a></th>
 <td class="colLast">
 <div class="deprecationComment">use #getLongUserId instead as user ids can be
  bigger than <code>Integer.MAX_VALUE</code></div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/zip/ZipEntry.html#setComprSize(long)">org.apache.tools.zip.ZipEntry.setComprSize&#8203;(long)</a></th>
 <td class="colLast">
 <div class="deprecationComment">since 1.7.
              Use setCompressedSize directly.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/zip/ZipOutputStream.html#adjustToLong(int)">org.apache.tools.zip.ZipOutputStream.adjustToLong&#8203;(int)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use ZipUtil#adjustToLong</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <th class="colDeprecatedItemName" scope="row"><a 
href="org/apache/tools/zip/ZipOutputStream.html#toDosTime(java.util.Date)">org.apache.tools.zip.ZipOutputStream.toDosTime&#8203;(Date)</a></th>
 <td class="colLast">
 <div class="deprecationComment">use ZipUtil#toDosTime</div>

Modified: ant/site/ant/production/manual/api/help-doc.html
URL: 
http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/help-doc.html?rev=1866428&r1=1866427&r2=1866428&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/help-doc.html (original)
+++ ant/site/ant/production/manual/api/help-doc.html Thu Sep  5 04:17:51 2019
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (11.0.1) on Thu May 02 18:38:52 IST 2019 -->
+<!-- Generated by javadoc (11.0.1) on Sun Sep 01 11:43:13 IST 2019 -->
 <title>API Help (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2019-05-02">
+<meta name="dc.created" content="2019-09-01">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>


Reply via email to