You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@commons.apache.org by gg...@apache.org on 2019/08/10 22:26:46 UTC

svn commit: r1048500 [39/39] - in /websites/production/commons/content/proper: commons-pool/ commons-pool/apidocs/ commons-pool/apidocs/org/apache/commons/pool2/ commons-pool/apidocs/org/apache/commons/pool2/class-use/ commons-pool/apidocs/org/apache/c...

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/LinkedBlockingDeque.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/LinkedBlockingDeque.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/LinkedBlockingDeque.html Sat Aug 10 22:26:44 2019
@@ -1155,7 +1155,7 @@
 <a class="jxr_linenumber" name="L1147" href="#L1147">1147</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear() {
 <a class="jxr_linenumber" name="L1148" href="#L1148">1148</a>         lock.lock();
 <a class="jxr_linenumber" name="L1149" href="#L1149">1149</a>         <strong class="jxr_keyword">try</strong> {
-<a class="jxr_linenumber" name="L1150" href="#L1150">1150</a>             <strong class="jxr_keyword">for</strong> (Node&lt;E&gt; f = first; f != <strong class="jxr_keyword">null</strong>; ) {
+<a class="jxr_linenumber" name="L1150" href="#L1150">1150</a>             <strong class="jxr_keyword">for</strong> (Node&lt;E&gt; f = first; f != <strong class="jxr_keyword">null</strong>;) {
 <a class="jxr_linenumber" name="L1151" href="#L1151">1151</a>                 f.item = <strong class="jxr_keyword">null</strong>;
 <a class="jxr_linenumber" name="L1152" href="#L1152">1152</a>                 <strong class="jxr_keyword">final</strong> Node&lt;E&gt; n = f.next;
 <a class="jxr_linenumber" name="L1153" href="#L1153">1153</a>                 f.prev = <strong class="jxr_keyword">null</strong>;

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/NoOpCallStack.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/NoOpCallStack.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/NoOpCallStack.html Sat Aug 10 22:26:44 2019
@@ -39,24 +39,27 @@
 <a class="jxr_linenumber" name="L31" href="#L31">31</a>  <em class="jxr_javadoccomment">     */</em>
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a name="CallStack" href="../../../../../org/apache/commons/pool2/impl/CallStack.html#CallStack">CallStack</a> INSTANCE = <strong class="jxr_keyword">new</strong> <a name="NoOpCallStack" href="../../../../../org/apache/commons/pool2/impl/NoOpCallStack.html#NoOpCallStack">NoOpCallStack</a>();
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>  
-<a class="jxr_linenumber" name="L34" href="#L34">34</a>      <strong class="jxr_keyword">private</strong> <a name="NoOpCallStack" href="../../../../../org/apache/commons/pool2/impl/NoOpCallStack.html#NoOpCallStack">NoOpCallStack</a>() {
-<a class="jxr_linenumber" name="L35" href="#L35">35</a>      }
-<a class="jxr_linenumber" name="L36" href="#L36">36</a>  
-<a class="jxr_linenumber" name="L37" href="#L37">37</a>      @Override
-<a class="jxr_linenumber" name="L38" href="#L38">38</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> printStackTrace(<strong class="jxr_keyword">final</strong> PrintWriter writer) {
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>          <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="L40" href="#L40">40</a>      }
-<a class="jxr_linenumber" name="L41" href="#L41">41</a>  
-<a class="jxr_linenumber" name="L42" href="#L42">42</a>      @Override
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> fillInStackTrace() {
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>          <em class="jxr_comment">// no-op</em>
-<a class="jxr_linenumber" name="L45" href="#L45">45</a>      }
-<a class="jxr_linenumber" name="L46" href="#L46">46</a>  
-<a class="jxr_linenumber" name="L47" href="#L47">47</a>      @Override
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear() {
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>          <em class="jxr_comment">// no-op</em>
-<a class="jxr_linenumber" name="L50" href="#L50">50</a>      }
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>  }
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>      <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>  <em class="jxr_javadoccomment">     * Constructs the singleton instance.</em>
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong class="jxr_keyword">private</strong> <a name="NoOpCallStack" href="../../../../../org/apache/commons/pool2/impl/NoOpCallStack.html#NoOpCallStack">NoOpCallStack</a>() {
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      }
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>  
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>      @Override
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> printStackTrace(<strong class="jxr_keyword">final</strong> PrintWriter writer) {
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>          <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>      }
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>  
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      @Override
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> fillInStackTrace() {
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>          <em class="jxr_comment">// no-op</em>
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>      }
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>  
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>      @Override
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear() {
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>          <em class="jxr_comment">// no-op</em>
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>      }
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>  }
 </pre>
 <hr/>
 <div id="footer">Copyright &#169; 2001&#x2013;2019 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PoolImplUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PoolImplUtils.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PoolImplUtils.html Sat Aug 10 22:26:44 2019
@@ -116,51 +116,52 @@
 <a class="jxr_linenumber" name="L108" href="#L108">108</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="L109" href="#L109">109</a> <em class="jxr_javadoccomment">     * Gets the matching parameterized type or null.</em>
 <a class="jxr_linenumber" name="L110" href="#L110">110</a> <em class="jxr_javadoccomment">     * @param type</em>
-<a class="jxr_linenumber" name="L111" href="#L111">111</a> <em class="jxr_javadoccomment">     *            The interface that defines a generic type</em>
+<a class="jxr_linenumber" name="L111" href="#L111">111</a> <em class="jxr_javadoccomment">     *            The interface that defines a generic type.</em>
 <a class="jxr_linenumber" name="L112" href="#L112">112</a> <em class="jxr_javadoccomment">     * @param clazz</em>
-<a class="jxr_linenumber" name="L113" href="#L113">113</a> <em class="jxr_javadoccomment">     *            The class that implements the interface with a concrete type</em>
+<a class="jxr_linenumber" name="L113" href="#L113">113</a> <em class="jxr_javadoccomment">     *            The class that implements the interface with a concrete type.</em>
 <a class="jxr_linenumber" name="L114" href="#L114">114</a> <em class="jxr_javadoccomment">     * @param &lt;T&gt;</em>
-<a class="jxr_linenumber" name="L115" href="#L115">115</a> <em class="jxr_javadoccomment">     *            The interface type</em>
-<a class="jxr_linenumber" name="L116" href="#L116">116</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L117" href="#L117">117</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> &lt;T&gt; ParameterizedType getParameterizedType(<strong class="jxr_keyword">final</strong> Class&lt;T&gt; type, <strong class="jxr_keyword">final</strong> Class&lt;? <strong class="jxr_keyword">extends</strong> T&gt; clazz) {
-<a class="jxr_linenumber" name="L118" href="#L118">118</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Type iface : clazz.getGenericInterfaces()) {
-<a class="jxr_linenumber" name="L119" href="#L119">119</a>             <em class="jxr_comment">// Only need to check interfaces that use generics</em>
-<a class="jxr_linenumber" name="L120" href="#L120">120</a>             <strong class="jxr_keyword">if</strong> (iface instanceof ParameterizedType) {
-<a class="jxr_linenumber" name="L121" href="#L121">121</a>                 <strong class="jxr_keyword">final</strong> ParameterizedType pi = (ParameterizedType) iface;
-<a class="jxr_linenumber" name="L122" href="#L122">122</a>                 <em class="jxr_comment">// Look for the generic interface</em>
-<a class="jxr_linenumber" name="L123" href="#L123">123</a>                 <strong class="jxr_keyword">if</strong> (pi.getRawType() instanceof Class &amp;&amp; type.isAssignableFrom((Class&lt;?&gt;) pi.getRawType())) {
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>                     <strong class="jxr_keyword">return</strong> pi;
-<a class="jxr_linenumber" name="L125" href="#L125">125</a>                 }
-<a class="jxr_linenumber" name="L126" href="#L126">126</a>             }
-<a class="jxr_linenumber" name="L127" href="#L127">127</a>         }
-<a class="jxr_linenumber" name="L128" href="#L128">128</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="L129" href="#L129">129</a>     }
-<a class="jxr_linenumber" name="L130" href="#L130">130</a> 
-<a class="jxr_linenumber" name="L131" href="#L131">131</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L132" href="#L132">132</a> <em class="jxr_javadoccomment">     * For a generic parameter, return either the Class used or if the type is unknown, the index for the type in</em>
-<a class="jxr_linenumber" name="L133" href="#L133">133</a> <em class="jxr_javadoccomment">     * definition of the class</em>
-<a class="jxr_linenumber" name="L134" href="#L134">134</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="L135" href="#L135">135</a> <em class="jxr_javadoccomment">     * @param clazz</em>
-<a class="jxr_linenumber" name="L136" href="#L136">136</a> <em class="jxr_javadoccomment">     *            defining class</em>
-<a class="jxr_linenumber" name="L137" href="#L137">137</a> <em class="jxr_javadoccomment">     * @param argType</em>
-<a class="jxr_linenumber" name="L138" href="#L138">138</a> <em class="jxr_javadoccomment">     *            the type argument of interest</em>
-<a class="jxr_linenumber" name="L139" href="#L139">139</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="L140" href="#L140">140</a> <em class="jxr_javadoccomment">     * @return An instance of {@link Class} representing the type used by the type parameter or an instance of</em>
-<a class="jxr_linenumber" name="L141" href="#L141">141</a> <em class="jxr_javadoccomment">     *         {@link Integer} representing the index for the type in the definition of the defining class</em>
-<a class="jxr_linenumber" name="L142" href="#L142">142</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L143" href="#L143">143</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Object getTypeParameter(<strong class="jxr_keyword">final</strong> Class&lt;?&gt; clazz, <strong class="jxr_keyword">final</strong> Type argType) {
-<a class="jxr_linenumber" name="L144" href="#L144">144</a>         <strong class="jxr_keyword">if</strong> (argType instanceof Class&lt;?&gt;) {
-<a class="jxr_linenumber" name="L145" href="#L145">145</a>             <strong class="jxr_keyword">return</strong> argType;
-<a class="jxr_linenumber" name="L146" href="#L146">146</a>         }
-<a class="jxr_linenumber" name="L147" href="#L147">147</a>         <strong class="jxr_keyword">final</strong> TypeVariable&lt;?&gt;[] tvs = clazz.getTypeParameters();
-<a class="jxr_linenumber" name="L148" href="#L148">148</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; tvs.length; i++) {
-<a class="jxr_linenumber" name="L149" href="#L149">149</a>             <strong class="jxr_keyword">if</strong> (tvs[i].equals(argType)) {
-<a class="jxr_linenumber" name="L150" href="#L150">150</a>                 <strong class="jxr_keyword">return</strong> Integer.valueOf(i);
-<a class="jxr_linenumber" name="L151" href="#L151">151</a>             }
-<a class="jxr_linenumber" name="L152" href="#L152">152</a>         }
-<a class="jxr_linenumber" name="L153" href="#L153">153</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="L154" href="#L154">154</a>     }
-<a class="jxr_linenumber" name="L155" href="#L155">155</a> }
+<a class="jxr_linenumber" name="L115" href="#L115">115</a> <em class="jxr_javadoccomment">     *            The interface type.</em>
+<a class="jxr_linenumber" name="L116" href="#L116">116</a> <em class="jxr_javadoccomment">     * @return the matching parameterized type or null.</em>
+<a class="jxr_linenumber" name="L117" href="#L117">117</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L118" href="#L118">118</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> &lt;T&gt; ParameterizedType getParameterizedType(<strong class="jxr_keyword">final</strong> Class&lt;T&gt; type, <strong class="jxr_keyword">final</strong> Class&lt;? <strong class="jxr_keyword">extends</strong> T&gt; clazz) {
+<a class="jxr_linenumber" name="L119" href="#L119">119</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Type iface : clazz.getGenericInterfaces()) {
+<a class="jxr_linenumber" name="L120" href="#L120">120</a>             <em class="jxr_comment">// Only need to check interfaces that use generics</em>
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>             <strong class="jxr_keyword">if</strong> (iface instanceof ParameterizedType) {
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>                 <strong class="jxr_keyword">final</strong> ParameterizedType pi = (ParameterizedType) iface;
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>                 <em class="jxr_comment">// Look for the generic interface</em>
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>                 <strong class="jxr_keyword">if</strong> (pi.getRawType() instanceof Class &amp;&amp; type.isAssignableFrom((Class&lt;?&gt;) pi.getRawType())) {
+<a class="jxr_linenumber" name="L125" href="#L125">125</a>                     <strong class="jxr_keyword">return</strong> pi;
+<a class="jxr_linenumber" name="L126" href="#L126">126</a>                 }
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>             }
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>         }
+<a class="jxr_linenumber" name="L129" href="#L129">129</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L130" href="#L130">130</a>     }
+<a class="jxr_linenumber" name="L131" href="#L131">131</a> 
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L133" href="#L133">133</a> <em class="jxr_javadoccomment">     * For a generic parameter, return either the Class used or if the type is unknown, the index for the type in</em>
+<a class="jxr_linenumber" name="L134" href="#L134">134</a> <em class="jxr_javadoccomment">     * definition of the class</em>
+<a class="jxr_linenumber" name="L135" href="#L135">135</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="L136" href="#L136">136</a> <em class="jxr_javadoccomment">     * @param clazz</em>
+<a class="jxr_linenumber" name="L137" href="#L137">137</a> <em class="jxr_javadoccomment">     *            defining class</em>
+<a class="jxr_linenumber" name="L138" href="#L138">138</a> <em class="jxr_javadoccomment">     * @param argType</em>
+<a class="jxr_linenumber" name="L139" href="#L139">139</a> <em class="jxr_javadoccomment">     *            the type argument of interest</em>
+<a class="jxr_linenumber" name="L140" href="#L140">140</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="L141" href="#L141">141</a> <em class="jxr_javadoccomment">     * @return An instance of {@link Class} representing the type used by the type parameter or an instance of</em>
+<a class="jxr_linenumber" name="L142" href="#L142">142</a> <em class="jxr_javadoccomment">     *         {@link Integer} representing the index for the type in the definition of the defining class</em>
+<a class="jxr_linenumber" name="L143" href="#L143">143</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L144" href="#L144">144</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Object getTypeParameter(<strong class="jxr_keyword">final</strong> Class&lt;?&gt; clazz, <strong class="jxr_keyword">final</strong> Type argType) {
+<a class="jxr_linenumber" name="L145" href="#L145">145</a>         <strong class="jxr_keyword">if</strong> (argType instanceof Class&lt;?&gt;) {
+<a class="jxr_linenumber" name="L146" href="#L146">146</a>             <strong class="jxr_keyword">return</strong> argType;
+<a class="jxr_linenumber" name="L147" href="#L147">147</a>         }
+<a class="jxr_linenumber" name="L148" href="#L148">148</a>         <strong class="jxr_keyword">final</strong> TypeVariable&lt;?&gt;[] tvs = clazz.getTypeParameters();
+<a class="jxr_linenumber" name="L149" href="#L149">149</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i &lt; tvs.length; i++) {
+<a class="jxr_linenumber" name="L150" href="#L150">150</a>             <strong class="jxr_keyword">if</strong> (tvs[i].equals(argType)) {
+<a class="jxr_linenumber" name="L151" href="#L151">151</a>                 <strong class="jxr_keyword">return</strong> Integer.valueOf(i);
+<a class="jxr_linenumber" name="L152" href="#L152">152</a>             }
+<a class="jxr_linenumber" name="L153" href="#L153">153</a>         }
+<a class="jxr_linenumber" name="L154" href="#L154">154</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L155" href="#L155">155</a>     }
+<a class="jxr_linenumber" name="L156" href="#L156">156</a> }
 </pre>
 <hr/>
 <div id="footer">Copyright &#169; 2001&#x2013;2019 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-frame.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2.impl</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2.impl</title>
         <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
     </head>
     <body>

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/package-summary.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2.impl</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2.impl</title>
         <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
     </head>
 
@@ -23,7 +23,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">
@@ -271,7 +271,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-frame.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2</title>
         <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" />
     </head>
     <body>

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/package-summary.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2</title>
         <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="style" />
     </head>
 
@@ -23,7 +23,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">
@@ -201,7 +201,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-frame.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2.proxy</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2.proxy</title>
         <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
     </head>
     <body>

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/package-summary.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference Package org.apache.commons.pool2.proxy</title>
+        <title>Apache Commons Pool 2.7.0 Reference Package org.apache.commons.pool2.proxy</title>
         <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
     </head>
 
@@ -23,7 +23,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">
@@ -116,7 +116,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">

Modified: websites/production/commons/content/proper/commons-pool/xref/overview-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/overview-frame.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/overview-frame.html Sat Aug 10 22:26:44 2019
@@ -4,11 +4,11 @@
     <!-- generated by Apache Maven JXR (jdk8) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference</title>
+        <title>Apache Commons Pool 2.7.0 Reference</title>
         <link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
     </head>
     <body>
-        <h1 title="Apache Commons Pool 2.6.2 Reference" class="bar"><strong>Apache Commons Pool 2.6.2 Reference</strong></h1>
+        <h1 title="Apache Commons Pool 2.7.0 Reference" class="bar"><strong>Apache Commons Pool 2.7.0 Reference</strong></h1>
         <div class="indexHeader"><span><a href="allclasses-frame.html" target="packageFrame">All&nbsp;Classes</a></span></div>
         <div class="indexContainer">
             <h2 title="Packages">Packages</h2>

Modified: websites/production/commons/content/proper/commons-pool/xref/overview-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/overview-summary.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/overview-summary.html Sat Aug 10 22:26:44 2019
@@ -4,7 +4,7 @@
     <!-- generated by Apache Maven JXR (jdk7) -->
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-        <title>Apache Commons Pool 2.6.2 Reference</title>
+        <title>Apache Commons Pool 2.7.0 Reference</title>
         <link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
     </head>
     <body>
@@ -22,7 +22,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">
@@ -37,7 +37,7 @@
         </div>
         
                 <div class="header">
-            <h1 class="title">Apache Commons Pool 2.6.2 Reference</h1>
+            <h1 class="title">Apache Commons Pool 2.7.0 Reference</h1>
         </div>
         <div class="contentContainer">
             <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages">
@@ -81,7 +81,7 @@
                 <li>Index</li>
                 <li>Help</li>
             </ul>
-            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.6.2 Reference</strong></em></div>
+            <div class="aboutLanguage"><em><strong>Apache Commons Pool 2.7.0 Reference</strong></em></div>
         </div>
         <div class="subNav">
             <ul class="navList">