You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2020/09/30 16:35:00 UTC

svn commit: r1882159 [22/25] - in /ant/site/ant/production: ./ manual/ manual/Tasks/ manual/Types/ manual/api/ manual/api/org/apache/tools/ant/ manual/api/org/apache/tools/ant/attribute/ manual/api/org/apache/tools/ant/dispatch/ manual/api/org/apache/t...

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.ComparatorName.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.ComparatorName.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.ComparatorName.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.ComparatorName.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ModifiedSelector.ComparatorName (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.selectors.modifiedselector, class: ModifiedSelector, class: ComparatorName">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/ModifiedSelector.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ModifiedSelector (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.selectors.modifiedselector, class: ModifiedSelector">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
@@ -117,16 +117,16 @@ implements <a href="../../../BuildListen
  <p>The ModifiedSelector is implemented as a <b>CoreSelector</b> and uses default
  values for all its attributes therefore the simplest example is</p><pre>
    &lt;copy todir="dest"&gt;
-       &lt;filelist dir="src"&gt;
+       &lt;fileset dir="src"&gt;
            &lt;modified/&gt;
-       &lt;/filelist&gt;
+       &lt;/fileset&gt;
    &lt;/copy&gt;
  </pre>
 
  <p>The same example rewritten as CoreSelector with setting the all values
  (same as defaults are) would be</p><pre>
    &lt;copy todir="dest"&gt;
-       &lt;filelist dir="src"&gt;
+       &lt;fileset dir="src"&gt;
            &lt;modified update="true"
                      cache="propertyfile"
                      algorithm="digest"
@@ -134,13 +134,13 @@ implements <a href="../../../BuildListen
                &lt;param name="cache.cachefile"     value="cache.properties"/&gt;
                &lt;param name="algorithm.algorithm" value="MD5"/&gt;
            &lt;/modified&gt;
-       &lt;/filelist&gt;
+       &lt;/fileset&gt;
    &lt;/copy&gt;
  </pre>
 
  <p>And the same rewritten as CustomSelector would be</p><pre>
    &lt;copy todir="dest"&gt;
-       &lt;filelist dir="src"&gt;
+       &lt;fileset dir="src"&gt;
            &lt;custom class="org.apache.tools.ant.type.selectors.ModifiedSelector"&gt;
                &lt;param name="update"     value="true"/&gt;
                &lt;param name="cache"      value="propertyfile"/&gt;
@@ -149,7 +149,7 @@ implements <a href="../../../BuildListen
                &lt;param name="cache.cachefile"     value="cache.properties"/&gt;
                &lt;param name="algorithm.algorithm" value="MD5"/&gt;
            &lt;/custom&gt;
-       &lt;/filelist&gt;
+       &lt;/fileset&gt;
    &lt;/copy&gt;
  </pre>
 

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/PropertiesfileCache.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/PropertiesfileCache.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/PropertiesfileCache.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/PropertiesfileCache.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>PropertiesfileCache (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.selectors.modifiedselector, class: PropertiesfileCache">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-summary.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-summary.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-summary.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-summary.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.selectors.modifiedselector (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.selectors.modifiedselector">
 <meta name="generator" content="javadoc/PackageWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-tree.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-tree.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-tree.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/modifiedselector/package-tree.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.selectors.modifiedselector Class Hierarchy (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="tree: package: org.apache.tools.ant.types.selectors.modifiedselector">
 <meta name="generator" content="javadoc/PackageTreeWriter">
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-summary.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-summary.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-summary.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-summary.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.selectors (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.selectors">
 <meta name="generator" content="javadoc/PackageWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-tree.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-tree.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-tree.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/selectors/package-tree.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.selectors Class Hierarchy (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="tree: package: org.apache.tools.ant.types.selectors">
 <meta name="generator" content="javadoc/PackageTreeWriter">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Provider.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Provider.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Provider.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Provider.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>Provider (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.spi, class: Provider">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Service.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Service.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Service.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/Service.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>Service (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.spi, class: Service">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-summary.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-summary.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-summary.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-summary.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.spi (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.types.spi">
 <meta name="generator" content="javadoc/PackageWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-tree.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-tree.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-tree.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/types/spi/package-tree.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>org.apache.tools.ant.types.spi Class Hierarchy (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="tree: package: org.apache.tools.ant.types.spi">
 <meta name="generator" content="javadoc/PackageTreeWriter">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/Base64Converter.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/Base64Converter.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/Base64Converter.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/Base64Converter.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>Base64Converter (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: Base64Converter">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ChainedMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ChainedMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ChainedMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ChainedMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ChainedMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ChainedMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.Delegate.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.Delegate.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.Delegate.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.Delegate.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ClasspathUtils.Delegate (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ClasspathUtils, class: Delegate">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ClasspathUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ClasspathUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ClasspathUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.EmptyEnumeration.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.EmptyEnumeration.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.EmptyEnumeration.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.EmptyEnumeration.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>CollectionUtils.EmptyEnumeration (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: CollectionUtils, class: EmptyEnumeration">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/CollectionUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>CollectionUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: CollectionUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/CompositeMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/CompositeMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/CompositeMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/CompositeMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>CompositeMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: CompositeMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatFileInputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatFileInputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatFileInputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatFileInputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ConcatFileInputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ConcatFileInputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatResourceInputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatResourceInputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatResourceInputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ConcatResourceInputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ConcatResourceInputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ConcatResourceInputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ContainerMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ContainerMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ContainerMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ContainerMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ContainerMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ContainerMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.XmlNamespacePolicy.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.XmlNamespacePolicy.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.XmlNamespacePolicy.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.XmlNamespacePolicy.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>DOMElementWriter.XmlNamespacePolicy (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: DOMElementWriter, class: XmlNamespacePolicy">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMElementWriter.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>DOMElementWriter (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: DOMElementWriter">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/DOMUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>DOMUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: DOMUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/DateUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/DateUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/DateUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/DateUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>DateUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: DateUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/DeweyDecimal.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/DeweyDecimal.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/DeweyDecimal.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/DeweyDecimal.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>DeweyDecimal (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: DeweyDecimal">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileNameMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileNameMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileNameMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileNameMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>FileNameMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, interface: FileNameMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileTokenizer.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileTokenizer.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileTokenizer.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileTokenizer.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>FileTokenizer (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: FileTokenizer">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/FileUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>FileUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: FileUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/FirstMatchMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/FirstMatchMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/FirstMatchMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/FirstMatchMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>FirstMatchMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: FirstMatchMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/FlatFileNameMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/FlatFileNameMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/FlatFileNameMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/FlatFileNameMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>FlatFileNameMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: FlatFileNameMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/GlobPatternMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/GlobPatternMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/GlobPatternMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/GlobPatternMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>GlobPatternMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: GlobPatternMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>IdentityMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: IdentityMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityStack.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityStack.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityStack.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/IdentityStack.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>IdentityStack (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: IdentityStack">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/JAXPUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/JAXPUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/JAXPUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/JAXPUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>JAXPUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: JAXPUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/JavaEnvUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/JavaEnvUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/JavaEnvUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/JavaEnvUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>JavaEnvUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: JavaEnvUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveInputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveInputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveInputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveInputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>KeepAliveInputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: KeepAliveInputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveOutputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveOutputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveOutputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/KeepAliveOutputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>KeepAliveOutputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: KeepAliveOutputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LayoutPreservingProperties.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LayoutPreservingProperties.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LayoutPreservingProperties.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LayoutPreservingProperties.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LayoutPreservingProperties (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LayoutPreservingProperties">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyFileOutputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyFileOutputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyFileOutputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyFileOutputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LazyFileOutputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LazyFileOutputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyHashtable.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyHashtable.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyHashtable.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LazyHashtable.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LazyHashtable (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LazyHashtable">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LeadPipeInputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LeadPipeInputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LeadPipeInputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LeadPipeInputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LeadPipeInputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LeadPipeInputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LineOrientedOutputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LineOrientedOutputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStreamRedirector.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStreamRedirector.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStreamRedirector.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineOrientedOutputStreamRedirector.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LineOrientedOutputStreamRedirector (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LineOrientedOutputStreamRedirector">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineTokenizer.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineTokenizer.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineTokenizer.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LineTokenizer.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LineTokenizer (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LineTokenizer">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LinkedHashtable.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LinkedHashtable.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LinkedHashtable.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LinkedHashtable.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LinkedHashtable (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LinkedHashtable">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/LoaderUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/LoaderUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/LoaderUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/LoaderUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>LoaderUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: LoaderUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/MergingMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/MergingMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/MergingMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/MergingMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>MergingMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: MergingMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/Native2AsciiUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/Native2AsciiUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/Native2AsciiUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/Native2AsciiUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>Native2AsciiUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: Native2AsciiUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/OutputStreamFunneler.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/OutputStreamFunneler.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/OutputStreamFunneler.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/OutputStreamFunneler.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>OutputStreamFunneler (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: OutputStreamFunneler">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/PackageNameMapper.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/PackageNameMapper.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/PackageNameMapper.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/PackageNameMapper.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>PackageNameMapper (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: PackageNameMapper">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.FileType.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.FileType.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.FileType.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.FileType.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>PermissionUtils.FileType (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: PermissionUtils, enum: FileType">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/PermissionUtils.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>PermissionUtils (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: PermissionUtils">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProcessUtil.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProcessUtil.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProcessUtil.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProcessUtil.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ProcessUtil (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ProcessUtil">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/PropertyOutputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/PropertyOutputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/PropertyOutputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/PropertyOutputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>PropertyOutputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: PropertyOutputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProxySetup.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProxySetup.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProxySetup.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ProxySetup.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ProxySetup (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ProxySetup">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReaderInputStream.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReaderInputStream.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReaderInputStream.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReaderInputStream.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ReaderInputStream (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ReaderInputStream">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript" src="../../../../../script-dir/jquery-ui.js"></script>
 </head>
 <body class="class-declaration">
-<script type="text/javascript">var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+<script type="text/javascript">var data = {"i0":10,"i1":10,"i2":10,"i3":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -105,7 +105,7 @@ loadScripts(document, 'script');</script
 <pre>public class <span class="typeNameLabel">ReaderInputStream</span>
 extends java.io.InputStream</pre>
 <div class="block">Adapts a <code>Reader</code> as an <code>InputStream</code>.
- Adapted from <code>StringInputStream</code>.</div>
+ <p>This is a stripped down version of <code>org.apache.commons.io.input.ReaderInputStream</code> of Apache Commons IO 2.7.</p></div>
 </section>
 <section class="summary">
 <ul class="blockList">
@@ -150,6 +150,21 @@ java.nio.charset.Charset&nbsp;charset)</
  with the specified encoding.</div>
 </td>
 </tr>
+<tr class="rowColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.io.Reader,java.nio.charset.CharsetEncoder)">ReaderInputStream</a></span>&#8203;(java.io.Reader&nbsp;reader,
+java.nio.charset.CharsetEncoder&nbsp;encoder)</code></th>
+<td class="colLast">
+<div class="block">Construct a new <a href="ReaderInputStream.html" title="class in org.apache.tools.ant.util"><code>ReaderInputStream</code></a>.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.io.Reader,java.nio.charset.CharsetEncoder,int)">ReaderInputStream</a></span>&#8203;(java.io.Reader&nbsp;reader,
+java.nio.charset.CharsetEncoder&nbsp;encoder,
+int&nbsp;bufferSize)</code></th>
+<td class="colLast">
+<div class="block">Construct a new <a href="ReaderInputStream.html" title="class in org.apache.tools.ant.util"><code>ReaderInputStream</code></a>.</div>
+</td>
+</tr>
 </tbody>
 </table>
 </div>
@@ -174,50 +189,33 @@ java.nio.charset.Charset&nbsp;charset)</
 </thead>
 <tbody>
 <tr class="altColor" id="i0">
-<td class="colFirst"><code>int</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#available()">available</a></span>()</code></th>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="rowColor" id="i1">
 <td class="colFirst"><code>void</code></td>
 <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
 <td class="colLast">
-<div class="block">Closes the Reader.</div>
+<div class="block">Close the stream.</div>
 </td>
 </tr>
-<tr class="altColor" id="i2">
-<td class="colFirst"><code>void</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mark(int)">mark</a></span>&#8203;(int&nbsp;limit)</code></th>
+<tr class="rowColor" id="i1">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#read()">read</a></span>()</code></th>
 <td class="colLast">
-<div class="block">Marks the read limit of the Reader.</div>
+<div class="block">Read a single byte.</div>
 </td>
 </tr>
-<tr class="rowColor" id="i3">
-<td class="colFirst"><code>boolean</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#markSupported()">markSupported</a></span>()</code></th>
-<td class="colLast">&nbsp;</td>
-</tr>
-<tr class="altColor" id="i4">
+<tr class="altColor" id="i2">
 <td class="colFirst"><code>int</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#read()">read</a></span>()</code></th>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#read(byte%5B%5D)">read</a></span>&#8203;(byte[]&nbsp;b)</code></th>
 <td class="colLast">
-<div class="block">Reads from the <code>Reader</code>, returning the same value.</div>
+<div class="block">Read the specified number of bytes into an array.</div>
 </td>
 </tr>
-<tr class="rowColor" id="i5">
+<tr class="rowColor" id="i3">
 <td class="colFirst"><code>int</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#read(byte%5B%5D,int,int)">read</a></span>&#8203;(byte[]&nbsp;b,
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#read(byte%5B%5D,int,int)">read</a></span>&#8203;(byte[]&nbsp;array,
 int&nbsp;off,
 int&nbsp;len)</code></th>
 <td class="colLast">
-<div class="block">Reads from the <code>Reader</code> into a byte array</div>
-</td>
-</tr>
-<tr class="altColor" id="i6">
-<td class="colFirst"><code>void</code></td>
-<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#reset()">reset</a></span>()</code></th>
-<td class="colLast">
-<div class="block">Resets the Reader.</div>
+<div class="block">Read the specified number of bytes into an array.</div>
 </td>
 </tr>
 </tbody>
@@ -228,7 +226,7 @@ int&nbsp;len)</code></th>
 <h3>Methods inherited from class&nbsp;java.io.InputStream</h3>
 <a id="methods.inherited.from.class.java.io.InputStream">
 <!--   -->
-</a><code>nullInputStream, read, readAllBytes, readNBytes, readNBytes, skip, skipNBytes, transferTo</code></div>
+</a><code>available, mark, markSupported, nullInputStream, readAllBytes, readNBytes, readNBytes, reset, skip, skipNBytes, transferTo</code></div>
 <div class="inheritedList">
 <h3>Methods inherited from class&nbsp;java.lang.Object</h3>
 <a id="methods.inherited.from.class.java.lang.Object">
@@ -249,6 +247,38 @@ int&nbsp;len)</code></th>
 <ul class="blockList">
 <li class="blockList">
 <section class="detail">
+<h3><a id="&lt;init&gt;(java.io.Reader,java.nio.charset.CharsetEncoder)">ReaderInputStream</a></h3>
+<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="memberName">ReaderInputStream</span>&#8203;(<span class="arguments">java.io.Reader&nbsp;reader,
+java.nio.charset.CharsetEncoder&nbsp;encoder)</span></div>
+<div class="block">Construct a new <a href="ReaderInputStream.html" title="class in org.apache.tools.ant.util"><code>ReaderInputStream</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>reader</code> - the target <code>Reader</code></dd>
+<dd><code>encoder</code> - the charset encoder</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>1.10.9</dd>
+</dl>
+</section>
+</li>
+<li class="blockList">
+<section class="detail">
+<h3><a id="&lt;init&gt;(java.io.Reader,java.nio.charset.CharsetEncoder,int)">ReaderInputStream</a></h3>
+<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="memberName">ReaderInputStream</span>&#8203;(<span class="arguments">java.io.Reader&nbsp;reader,
+java.nio.charset.CharsetEncoder&nbsp;encoder,
+int&nbsp;bufferSize)</span></div>
+<div class="block">Construct a new <a href="ReaderInputStream.html" title="class in org.apache.tools.ant.util"><code>ReaderInputStream</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>reader</code> - the target <code>Reader</code></dd>
+<dd><code>encoder</code> - the charset encoder</dd>
+<dd><code>bufferSize</code> - the size of the input buffer in number of characters</dd>
+<dt><span class="simpleTagLabel">Since:</span></dt>
+<dd>1.10.9</dd>
+</dl>
+</section>
+</li>
+<li class="blockList">
+<section class="detail">
 <h3><a id="&lt;init&gt;(java.io.Reader)">ReaderInputStream</a></h3>
 <div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="memberName">ReaderInputStream</span>&#8203;(<span class="arguments">java.io.Reader&nbsp;reader)</span></div>
 <div class="block">Construct a <code>ReaderInputStream</code>
@@ -303,95 +333,60 @@ java.nio.charset.Charset&nbsp;charset)</
 <ul class="blockList">
 <li class="blockList">
 <section class="detail">
-<h3><a id="read()">read</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">read</span>()
-         throws <span class="exceptions">java.io.IOException</span></div>
-<div class="block">Reads from the <code>Reader</code>, returning the same value.</div>
-<dl>
-<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
-<dd><code>read</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>the value of the next character in the <code>Reader</code>.</dd>
-<dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - if the original <code>Reader</code> fails to be read</dd>
-</dl>
-</section>
-</li>
-<li class="blockList">
-<section class="detail">
 <h3><a id="read(byte[],int,int)">read</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">read</span>&#8203;(<span class="arguments">byte[]&nbsp;b,
+<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">read</span>&#8203;(<span class="arguments">byte[]&nbsp;array,
 int&nbsp;off,
 int&nbsp;len)</span>
          throws <span class="exceptions">java.io.IOException</span></div>
-<div class="block">Reads from the <code>Reader</code> into a byte array</div>
+<div class="block">Read the specified number of bytes into an array.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code>read</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>b</code> - the byte array to read into</dd>
-<dd><code>off</code> - the offset in the byte array</dd>
-<dd><code>len</code> - the length in the byte array to fill</dd>
+<dd><code>array</code> - the byte array to read into</dd>
+<dd><code>off</code> - the offset to start reading bytes into</dd>
+<dd><code>len</code> - the number of bytes to read</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>the actual number read into the byte array, -1 at
-         the end of the stream</dd>
+<dd>the number of bytes read or <code>-1</code>
+         if the end of the stream has been reached</dd>
 <dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - if an error occurs</dd>
+<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
 </dl>
 </section>
 </li>
 <li class="blockList">
 <section class="detail">
-<h3><a id="mark(int)">mark</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">void</span>&nbsp;<span class="memberName">mark</span>&#8203;(<span class="arguments">int&nbsp;limit)</span></div>
-<div class="block">Marks the read limit of the Reader.</div>
+<h3><a id="read(byte[])">read</a></h3>
+<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">read</span>&#8203;(<span class="arguments">byte[]&nbsp;b)</span>
+         throws <span class="exceptions">java.io.IOException</span></div>
+<div class="block">Read the specified number of bytes into an array.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>mark</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
+<dd><code>read</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>limit</code> - the maximum limit of bytes that can be read before the
-              mark position becomes invalid</dd>
-</dl>
-</section>
-</li>
-<li class="blockList">
-<section class="detail">
-<h3><a id="available()">available</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">available</span>()
-              throws <span class="exceptions">java.io.IOException</span></div>
-<dl>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>available</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
+<dd><code>b</code> - the byte array to read into</dd>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>the current number of bytes ready for reading</dd>
+<dd>the number of bytes read or <code>-1</code>
+         if the end of the stream has been reached</dd>
 <dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - if an error occurs</dd>
+<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
 </dl>
 </section>
 </li>
 <li class="blockList">
 <section class="detail">
-<h3><a id="markSupported()">markSupported</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">boolean</span>&nbsp;<span class="memberName">markSupported</span>()</div>
+<h3><a id="read()">read</a></h3>
+<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">int</span>&nbsp;<span class="memberName">read</span>()
+         throws <span class="exceptions">java.io.IOException</span></div>
+<div class="block">Read a single byte.</div>
 <dl>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>markSupported</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code>read</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
 <dt><span class="returnLabel">Returns:</span></dt>
-<dd>false - mark is not supported</dd>
-</dl>
-</section>
-</li>
-<li class="blockList">
-<section class="detail">
-<h3><a id="reset()">reset</a></h3>
-<div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">void</span>&nbsp;<span class="memberName">reset</span>()
-           throws <span class="exceptions">java.io.IOException</span></div>
-<div class="block">Resets the Reader.</div>
-<dl>
-<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
-<dd><code>reset</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
+<dd>either the byte read or <code>-1</code> if the end of the stream
+         has been reached</dd>
 <dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - if the Reader fails to be reset</dd>
+<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
 </dl>
 </section>
 </li>
@@ -400,7 +395,8 @@ int&nbsp;len)</span>
 <h3><a id="close()">close</a></h3>
 <div class="memberSignature"><span class="modifiers">public</span>&nbsp;<span class="returnType">void</span>&nbsp;<span class="memberName">close</span>()
            throws <span class="exceptions">java.io.IOException</span></div>
-<div class="block">Closes the Reader.</div>
+<div class="block">Close the stream. This method will cause the underlying <code>Reader</code>
+ to be closed.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code>close</code>&nbsp;in interface&nbsp;<code>java.lang.AutoCloseable</code></dd>
@@ -409,7 +405,7 @@ int&nbsp;len)</span>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code>close</code>&nbsp;in class&nbsp;<code>java.io.InputStream</code></dd>
 <dt><span class="throwsLabel">Throws:</span></dt>
-<dd><code>java.io.IOException</code> - if the original Reader fails to be closed</dd>
+<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
 </dl>
 </section>
 </li>

Modified: ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReflectUtil.html
URL: http://svn.apache.org/viewvc/ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReflectUtil.html?rev=1882159&r1=1882158&r2=1882159&view=diff
==============================================================================
--- ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReflectUtil.html (original)
+++ ant/site/ant/production/manual/api/org/apache/tools/ant/util/ReflectUtil.html Wed Sep 30 16:34:48 2020
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (14.0.1) on Sun May 10 16:33:21 CEST 2020 -->
+<!-- Generated by javadoc (14.0.1) on Sun Sep 27 11:58:16 CEST 2020 -->
 <title>ReflectUtil (Apache Ant API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="dc.created" content="2020-05-10">
+<meta name="dc.created" content="2020-09-27">
 <meta name="description" content="declaration: package: org.apache.tools.ant.util, class: ReflectUtil">
 <meta name="generator" content="javadoc/ClassWriterImpl">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">