You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2013/12/31 23:46:04 UTC

svn commit: r892303 [30/30] - in /websites/production/commons/content/proper/commons-pool: ./ apidocs/ apidocs/org/apache/commons/pool2/ apidocs/org/apache/commons/pool2/class-use/ apidocs/org/apache/commons/pool2/impl/ apidocs/org/apache/commons/pool2...

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObject.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObject.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObject.html Tue Dec 31 22:45:58 2013
@@ -111,225 +111,225 @@
 <a class="jxr_linenumber" name="101" href="#101">101</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="102" href="#102">102</a> <em class="jxr_javadoccomment">     * Get the number of times this object has been borrowed.</em>
 <a class="jxr_linenumber" name="103" href="#103">103</a> <em class="jxr_javadoccomment">     * @return The number of times this object has been borrowed.</em>
-<a class="jxr_linenumber" name="104" href="#104">104</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="105" href="#105">105</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getBorrowedCount() {
-<a class="jxr_linenumber" name="106" href="#106">106</a>         <strong class="jxr_keyword">return</strong> borrowedCount;
-<a class="jxr_linenumber" name="107" href="#107">107</a>     }
-<a class="jxr_linenumber" name="108" href="#108">108</a> 
-<a class="jxr_linenumber" name="109" href="#109">109</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="110" href="#110">110</a> <em class="jxr_javadoccomment">     * Return an estimate of the last time this object was used.  If the class</em>
-<a class="jxr_linenumber" name="111" href="#111">111</a> <em class="jxr_javadoccomment">     * of the pooled object implements {@link TrackedUse}, what is returned is</em>
-<a class="jxr_linenumber" name="112" href="#112">112</a> <em class="jxr_javadoccomment">     * the maximum of {@link TrackedUse#getLastUsed()} and</em>
-<a class="jxr_linenumber" name="113" href="#113">113</a> <em class="jxr_javadoccomment">     * {@link #getLastBorrowTime()}; otherwise this method gives the same</em>
-<a class="jxr_linenumber" name="114" href="#114">114</a> <em class="jxr_javadoccomment">     * value as {@link #getLastBorrowTime()}.</em>
-<a class="jxr_linenumber" name="115" href="#115">115</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="116" href="#116">116</a> <em class="jxr_javadoccomment">     * @return the last time this object was used</em>
-<a class="jxr_linenumber" name="117" href="#117">117</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="118" href="#118">118</a>     @Override
-<a class="jxr_linenumber" name="119" href="#119">119</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getLastUsedTime() {
-<a class="jxr_linenumber" name="120" href="#120">120</a>         <strong class="jxr_keyword">if</strong> (object instanceof TrackedUse) {
-<a class="jxr_linenumber" name="121" href="#121">121</a>             <strong class="jxr_keyword">return</strong> Math.max(((TrackedUse) object).getLastUsed(), lastUseTime);
-<a class="jxr_linenumber" name="122" href="#122">122</a>         } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="123" href="#123">123</a>             <strong class="jxr_keyword">return</strong> lastUseTime;
-<a class="jxr_linenumber" name="124" href="#124">124</a>         }
-<a class="jxr_linenumber" name="125" href="#125">125</a>     }
-<a class="jxr_linenumber" name="126" href="#126">126</a> 
-<a class="jxr_linenumber" name="127" href="#127">127</a>     @Override
-<a class="jxr_linenumber" name="128" href="#128">128</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> compareTo(PooledObject&lt;T&gt; other) {
-<a class="jxr_linenumber" name="129" href="#129">129</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> lastActiveDiff = <strong class="jxr_keyword">this</strong>.getLastReturnTime() - other.getLastReturnTime();
-<a class="jxr_linenumber" name="130" href="#130">130</a>         <strong class="jxr_keyword">if</strong> (lastActiveDiff == 0) {
-<a class="jxr_linenumber" name="131" href="#131">131</a>             <em class="jxr_comment">// Make sure the natural ordering is broadly consistent with equals</em>
-<a class="jxr_linenumber" name="132" href="#132">132</a>             <em class="jxr_comment">// although this will break down if distinct objects have the same</em>
-<a class="jxr_linenumber" name="133" href="#133">133</a>             <em class="jxr_comment">// identity hash code.</em>
-<a class="jxr_linenumber" name="134" href="#134">134</a>             <em class="jxr_comment">// see java.lang.Comparable Javadocs</em>
-<a class="jxr_linenumber" name="135" href="#135">135</a>             <strong class="jxr_keyword">return</strong> System.identityHashCode(<strong class="jxr_keyword">this</strong>) - System.identityHashCode(other);
-<a class="jxr_linenumber" name="136" href="#136">136</a>         }
-<a class="jxr_linenumber" name="137" href="#137">137</a>         <em class="jxr_comment">// handle int overflow</em>
-<a class="jxr_linenumber" name="138" href="#138">138</a>         <strong class="jxr_keyword">return</strong> (<strong class="jxr_keyword">int</strong>)Math.min(Math.max(lastActiveDiff, Integer.MIN_VALUE), Integer.MAX_VALUE);
-<a class="jxr_linenumber" name="139" href="#139">139</a>     }
-<a class="jxr_linenumber" name="140" href="#140">140</a> 
-<a class="jxr_linenumber" name="141" href="#141">141</a>     @Override
-<a class="jxr_linenumber" name="142" href="#142">142</a>     <strong class="jxr_keyword">public</strong> String toString() {
-<a class="jxr_linenumber" name="143" href="#143">143</a>         StringBuilder result = <strong class="jxr_keyword">new</strong> StringBuilder();
-<a class="jxr_linenumber" name="144" href="#144">144</a>         result.append(<span class="jxr_string">"Object: "</span>);
-<a class="jxr_linenumber" name="145" href="#145">145</a>         result.append(object.toString());
-<a class="jxr_linenumber" name="146" href="#146">146</a>         result.append(<span class="jxr_string">", State: "</span>);
-<a class="jxr_linenumber" name="147" href="#147">147</a>         <strong class="jxr_keyword">synchronized</strong> (<strong class="jxr_keyword">this</strong>) {
-<a class="jxr_linenumber" name="148" href="#148">148</a>             result.append(state.toString());
-<a class="jxr_linenumber" name="149" href="#149">149</a>         }
-<a class="jxr_linenumber" name="150" href="#150">150</a>         <strong class="jxr_keyword">return</strong> result.toString();
-<a class="jxr_linenumber" name="151" href="#151">151</a>         <em class="jxr_comment">// TODO add other attributes</em>
-<a class="jxr_linenumber" name="152" href="#152">152</a>     }
-<a class="jxr_linenumber" name="153" href="#153">153</a> 
-<a class="jxr_linenumber" name="154" href="#154">154</a>     @Override
-<a class="jxr_linenumber" name="155" href="#155">155</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> startEvictionTest() {
-<a class="jxr_linenumber" name="156" href="#156">156</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.IDLE) {
-<a class="jxr_linenumber" name="157" href="#157">157</a>             state = PooledObjectState.EVICTION;
-<a class="jxr_linenumber" name="158" href="#158">158</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="159" href="#159">159</a>         }
-<a class="jxr_linenumber" name="160" href="#160">160</a> 
-<a class="jxr_linenumber" name="161" href="#161">161</a>         <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="162" href="#162">162</a>     }
-<a class="jxr_linenumber" name="163" href="#163">163</a> 
-<a class="jxr_linenumber" name="164" href="#164">164</a>     @Override
-<a class="jxr_linenumber" name="165" href="#165">165</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> endEvictionTest(
-<a class="jxr_linenumber" name="166" href="#166">166</a>             Deque&lt;PooledObject&lt;T&gt;&gt; idleQueue) {
-<a class="jxr_linenumber" name="167" href="#167">167</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION) {
-<a class="jxr_linenumber" name="168" href="#168">168</a>             state = PooledObjectState.IDLE;
-<a class="jxr_linenumber" name="169" href="#169">169</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="170" href="#170">170</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION_RETURN_TO_HEAD) {
-<a class="jxr_linenumber" name="171" href="#171">171</a>             state = PooledObjectState.IDLE;
-<a class="jxr_linenumber" name="172" href="#172">172</a>             <strong class="jxr_keyword">if</strong> (!idleQueue.offerFirst(<strong class="jxr_keyword">this</strong>)) {
-<a class="jxr_linenumber" name="173" href="#173">173</a>                 <em class="jxr_comment">// TODO - Should never happen</em>
-<a class="jxr_linenumber" name="174" href="#174">174</a>             }
-<a class="jxr_linenumber" name="175" href="#175">175</a>         }
-<a class="jxr_linenumber" name="176" href="#176">176</a> 
-<a class="jxr_linenumber" name="177" href="#177">177</a>         <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="178" href="#178">178</a>     }
-<a class="jxr_linenumber" name="179" href="#179">179</a> 
-<a class="jxr_linenumber" name="180" href="#180">180</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="181" href="#181">181</a> <em class="jxr_javadoccomment">     * Allocates the object.</em>
-<a class="jxr_linenumber" name="182" href="#182">182</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="183" href="#183">183</a> <em class="jxr_javadoccomment">     * @return {@code true} if the original state was {@link PooledObjectState#IDLE IDLE}</em>
-<a class="jxr_linenumber" name="184" href="#184">184</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="185" href="#185">185</a>     @Override
-<a class="jxr_linenumber" name="186" href="#186">186</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> allocate() {
-<a class="jxr_linenumber" name="187" href="#187">187</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.IDLE) {
-<a class="jxr_linenumber" name="188" href="#188">188</a>             state = PooledObjectState.ALLOCATED;
-<a class="jxr_linenumber" name="189" href="#189">189</a>             lastBorrowTime = System.currentTimeMillis();
-<a class="jxr_linenumber" name="190" href="#190">190</a>             lastUseTime = lastBorrowTime;
-<a class="jxr_linenumber" name="191" href="#191">191</a>             borrowedCount++;
-<a class="jxr_linenumber" name="192" href="#192">192</a>             <strong class="jxr_keyword">if</strong> (logAbandoned) {
-<a class="jxr_linenumber" name="193" href="#193">193</a>                 borrowedBy = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a>();
-<a class="jxr_linenumber" name="194" href="#194">194</a>             }
-<a class="jxr_linenumber" name="195" href="#195">195</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="196" href="#196">196</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION) {
-<a class="jxr_linenumber" name="197" href="#197">197</a>             <em class="jxr_comment">// TODO Allocate anyway and ignore eviction test</em>
-<a class="jxr_linenumber" name="198" href="#198">198</a>             state = PooledObjectState.EVICTION_RETURN_TO_HEAD;
-<a class="jxr_linenumber" name="199" href="#199">199</a>             <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="200" href="#200">200</a>         }
-<a class="jxr_linenumber" name="201" href="#201">201</a>         <em class="jxr_comment">// TODO if validating and testOnBorrow == true then pre-allocate for</em>
-<a class="jxr_linenumber" name="202" href="#202">202</a>         <em class="jxr_comment">// performance</em>
-<a class="jxr_linenumber" name="203" href="#203">203</a>         <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="204" href="#204">204</a>     }
-<a class="jxr_linenumber" name="205" href="#205">205</a> 
-<a class="jxr_linenumber" name="206" href="#206">206</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="207" href="#207">207</a> <em class="jxr_javadoccomment">     * Deallocates the object and sets it {@link PooledObjectState#IDLE IDLE}</em>
-<a class="jxr_linenumber" name="208" href="#208">208</a> <em class="jxr_javadoccomment">     * if it is currently {@link PooledObjectState#ALLOCATED ALLOCATED}.</em>
-<a class="jxr_linenumber" name="209" href="#209">209</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="210" href="#210">210</a> <em class="jxr_javadoccomment">     * @return {@code true} if the state was {@link PooledObjectState#ALLOCATED ALLOCATED}</em>
-<a class="jxr_linenumber" name="211" href="#211">211</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="212" href="#212">212</a>     @Override
-<a class="jxr_linenumber" name="213" href="#213">213</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> deallocate() {
-<a class="jxr_linenumber" name="214" href="#214">214</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.ALLOCATED ||
-<a class="jxr_linenumber" name="215" href="#215">215</a>                 state == PooledObjectState.RETURNING) {
-<a class="jxr_linenumber" name="216" href="#216">216</a>             state = PooledObjectState.IDLE;
-<a class="jxr_linenumber" name="217" href="#217">217</a>             lastReturnTime = System.currentTimeMillis();
-<a class="jxr_linenumber" name="218" href="#218">218</a>             <strong class="jxr_keyword">if</strong> (borrowedBy != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="219" href="#219">219</a>                 borrowedBy = <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="220" href="#220">220</a>             }
-<a class="jxr_linenumber" name="221" href="#221">221</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="222" href="#222">222</a>         }
-<a class="jxr_linenumber" name="223" href="#223">223</a> 
-<a class="jxr_linenumber" name="224" href="#224">224</a>         <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="225" href="#225">225</a>     }
-<a class="jxr_linenumber" name="226" href="#226">226</a> 
-<a class="jxr_linenumber" name="227" href="#227">227</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="228" href="#228">228</a> <em class="jxr_javadoccomment">     * Sets the state to {@link PooledObjectState#INVALID INVALID}</em>
-<a class="jxr_linenumber" name="229" href="#229">229</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="230" href="#230">230</a>     @Override
-<a class="jxr_linenumber" name="231" href="#231">231</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> invalidate() {
-<a class="jxr_linenumber" name="232" href="#232">232</a>         state = PooledObjectState.INVALID;
-<a class="jxr_linenumber" name="233" href="#233">233</a>     }
-<a class="jxr_linenumber" name="234" href="#234">234</a> 
-<a class="jxr_linenumber" name="235" href="#235">235</a>     @Override
-<a class="jxr_linenumber" name="236" href="#236">236</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> use() {
-<a class="jxr_linenumber" name="237" href="#237">237</a>         lastUseTime = System.currentTimeMillis();
-<a class="jxr_linenumber" name="238" href="#238">238</a>         usedBy = <strong class="jxr_keyword">new</strong> Exception(<span class="jxr_string">"The last code to use this object was:"</span>);
-<a class="jxr_linenumber" name="239" href="#239">239</a>     }
-<a class="jxr_linenumber" name="240" href="#240">240</a> 
-<a class="jxr_linenumber" name="241" href="#241">241</a>     @Override
-<a class="jxr_linenumber" name="242" href="#242">242</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> printStackTrace(PrintWriter writer) {
-<a class="jxr_linenumber" name="243" href="#243">243</a>         Exception borrowedByCopy = <strong class="jxr_keyword">this</strong>.borrowedBy;
-<a class="jxr_linenumber" name="244" href="#244">244</a>         <strong class="jxr_keyword">if</strong> (borrowedByCopy != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="245" href="#245">245</a>             borrowedByCopy.printStackTrace(writer);
-<a class="jxr_linenumber" name="246" href="#246">246</a>         }
-<a class="jxr_linenumber" name="247" href="#247">247</a>         Exception usedByCopy = <strong class="jxr_keyword">this</strong>.usedBy;
-<a class="jxr_linenumber" name="248" href="#248">248</a>         <strong class="jxr_keyword">if</strong> (usedByCopy != <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="249" href="#249">249</a>             usedByCopy.printStackTrace(writer);
-<a class="jxr_linenumber" name="250" href="#250">250</a>         }
-<a class="jxr_linenumber" name="251" href="#251">251</a>     }
-<a class="jxr_linenumber" name="252" href="#252">252</a> 
-<a class="jxr_linenumber" name="253" href="#253">253</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="254" href="#254">254</a> <em class="jxr_javadoccomment">     * Returns the state of this object.</em>
-<a class="jxr_linenumber" name="255" href="#255">255</a> <em class="jxr_javadoccomment">     * @return state</em>
-<a class="jxr_linenumber" name="256" href="#256">256</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="257" href="#257">257</a>     @Override
-<a class="jxr_linenumber" name="258" href="#258">258</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <a href="../../../../../org/apache/commons/pool2/PooledObjectState.html">PooledObjectState</a> getState() {
-<a class="jxr_linenumber" name="259" href="#259">259</a>         <strong class="jxr_keyword">return</strong> state;
-<a class="jxr_linenumber" name="260" href="#260">260</a>     }
-<a class="jxr_linenumber" name="261" href="#261">261</a> 
-<a class="jxr_linenumber" name="262" href="#262">262</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="263" href="#263">263</a> <em class="jxr_javadoccomment">     * Marks the pooled object as abandoned.</em>
-<a class="jxr_linenumber" name="264" href="#264">264</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="265" href="#265">265</a>     @Override
-<a class="jxr_linenumber" name="266" href="#266">266</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> markAbandoned() {
-<a class="jxr_linenumber" name="267" href="#267">267</a>         state = PooledObjectState.ABANDONED;
-<a class="jxr_linenumber" name="268" href="#268">268</a>     }
-<a class="jxr_linenumber" name="269" href="#269">269</a> 
-<a class="jxr_linenumber" name="270" href="#270">270</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="271" href="#271">271</a> <em class="jxr_javadoccomment">     * Marks the object as returning to the pool.</em>
-<a class="jxr_linenumber" name="272" href="#272">272</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="273" href="#273">273</a>     @Override
-<a class="jxr_linenumber" name="274" href="#274">274</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> markReturning() {
-<a class="jxr_linenumber" name="275" href="#275">275</a>         state = PooledObjectState.RETURNING;
-<a class="jxr_linenumber" name="276" href="#276">276</a>     }
-<a class="jxr_linenumber" name="277" href="#277">277</a> 
-<a class="jxr_linenumber" name="278" href="#278">278</a>     @Override
-<a class="jxr_linenumber" name="279" href="#279">279</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setLogAbandoned(<strong class="jxr_keyword">boolean</strong> logAbandoned) {
-<a class="jxr_linenumber" name="280" href="#280">280</a>         <strong class="jxr_keyword">this</strong>.logAbandoned = logAbandoned;
-<a class="jxr_linenumber" name="281" href="#281">281</a>     }
-<a class="jxr_linenumber" name="282" href="#282">282</a> 
-<a class="jxr_linenumber" name="283" href="#283">283</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="284" href="#284">284</a> <em class="jxr_javadoccomment">     * Used to track how an object was obtained from the pool (the stack trace</em>
-<a class="jxr_linenumber" name="285" href="#285">285</a> <em class="jxr_javadoccomment">     * of the exception will show which code borrowed the object) and when the</em>
-<a class="jxr_linenumber" name="286" href="#286">286</a> <em class="jxr_javadoccomment">     * object was borrowed.</em>
-<a class="jxr_linenumber" name="287" href="#287">287</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="288" href="#288">288</a>     <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a> <strong class="jxr_keyword">extends</strong> Exception {
-<a class="jxr_linenumber" name="289" href="#289">289</a> 
-<a class="jxr_linenumber" name="290" href="#290">290</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> serialVersionUID = 7398692158058772916L;
-<a class="jxr_linenumber" name="291" href="#291">291</a> 
-<a class="jxr_linenumber" name="292" href="#292">292</a>         <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Date format */</em>
-<a class="jxr_linenumber" name="293" href="#293">293</a>         <em class="jxr_comment">//@GuardedBy("this")</em>
-<a class="jxr_linenumber" name="294" href="#294">294</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> SimpleDateFormat format = <strong class="jxr_keyword">new</strong> SimpleDateFormat
-<a class="jxr_linenumber" name="295" href="#295">295</a>             (<span class="jxr_string">"'Pooled object created' yyyy-MM-dd HH:mm:ss Z "</span> +
-<a class="jxr_linenumber" name="296" href="#296">296</a>              <span class="jxr_string">"'by the following code has not been returned to the pool:'"</span>);
-<a class="jxr_linenumber" name="297" href="#297">297</a> 
-<a class="jxr_linenumber" name="298" href="#298">298</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> _createdTime;
-<a class="jxr_linenumber" name="299" href="#299">299</a> 
-<a class="jxr_linenumber" name="300" href="#300">300</a>         <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="301" href="#301">301</a> <em class="jxr_javadoccomment">         * Create a new instance.</em>
-<a class="jxr_linenumber" name="302" href="#302">302</a> <em class="jxr_javadoccomment">         * &lt;p&gt;</em>
-<a class="jxr_linenumber" name="303" href="#303">303</a> <em class="jxr_javadoccomment">         * @see Exception#Exception()</em>
-<a class="jxr_linenumber" name="304" href="#304">304</a> <em class="jxr_javadoccomment">         */</em>
-<a class="jxr_linenumber" name="305" href="#305">305</a>         <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a>() {
-<a class="jxr_linenumber" name="306" href="#306">306</a>             <strong class="jxr_keyword">super</strong>();
-<a class="jxr_linenumber" name="307" href="#307">307</a>             _createdTime = System.currentTimeMillis();
-<a class="jxr_linenumber" name="308" href="#308">308</a>         }
-<a class="jxr_linenumber" name="309" href="#309">309</a> 
-<a class="jxr_linenumber" name="310" href="#310">310</a>         <em class="jxr_comment">// Override getMessage to avoid creating objects and formatting</em>
-<a class="jxr_linenumber" name="311" href="#311">311</a>         <em class="jxr_comment">// dates unless the log message will actually be used.</em>
-<a class="jxr_linenumber" name="312" href="#312">312</a>         @Override
-<a class="jxr_linenumber" name="313" href="#313">313</a>         <strong class="jxr_keyword">public</strong> String getMessage() {
-<a class="jxr_linenumber" name="314" href="#314">314</a>             String msg;
-<a class="jxr_linenumber" name="315" href="#315">315</a>             <strong class="jxr_keyword">synchronized</strong>(format) {
-<a class="jxr_linenumber" name="316" href="#316">316</a>                 msg = format.format(<strong class="jxr_keyword">new</strong> Date(_createdTime));
-<a class="jxr_linenumber" name="317" href="#317">317</a>             }
-<a class="jxr_linenumber" name="318" href="#318">318</a>             <strong class="jxr_keyword">return</strong> msg;
-<a class="jxr_linenumber" name="319" href="#319">319</a>         }
-<a class="jxr_linenumber" name="320" href="#320">320</a>     }
-<a class="jxr_linenumber" name="321" href="#321">321</a> }
+<a class="jxr_linenumber" name="104" href="#104">104</a> <em class="jxr_javadoccomment">     * @since 2.1</em>
+<a class="jxr_linenumber" name="105" href="#105">105</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="106" href="#106">106</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getBorrowedCount() {
+<a class="jxr_linenumber" name="107" href="#107">107</a>         <strong class="jxr_keyword">return</strong> borrowedCount;
+<a class="jxr_linenumber" name="108" href="#108">108</a>     }
+<a class="jxr_linenumber" name="109" href="#109">109</a> 
+<a class="jxr_linenumber" name="110" href="#110">110</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="111" href="#111">111</a> <em class="jxr_javadoccomment">     * Return an estimate of the last time this object was used.  If the class</em>
+<a class="jxr_linenumber" name="112" href="#112">112</a> <em class="jxr_javadoccomment">     * of the pooled object implements {@link TrackedUse}, what is returned is</em>
+<a class="jxr_linenumber" name="113" href="#113">113</a> <em class="jxr_javadoccomment">     * the maximum of {@link TrackedUse#getLastUsed()} and</em>
+<a class="jxr_linenumber" name="114" href="#114">114</a> <em class="jxr_javadoccomment">     * {@link #getLastBorrowTime()}; otherwise this method gives the same</em>
+<a class="jxr_linenumber" name="115" href="#115">115</a> <em class="jxr_javadoccomment">     * value as {@link #getLastBorrowTime()}.</em>
+<a class="jxr_linenumber" name="116" href="#116">116</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="117" href="#117">117</a> <em class="jxr_javadoccomment">     * @return the last time this object was used</em>
+<a class="jxr_linenumber" name="118" href="#118">118</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="119" href="#119">119</a>     @Override
+<a class="jxr_linenumber" name="120" href="#120">120</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getLastUsedTime() {
+<a class="jxr_linenumber" name="121" href="#121">121</a>         <strong class="jxr_keyword">if</strong> (object instanceof TrackedUse) {
+<a class="jxr_linenumber" name="122" href="#122">122</a>             <strong class="jxr_keyword">return</strong> Math.max(((TrackedUse) object).getLastUsed(), lastUseTime);
+<a class="jxr_linenumber" name="123" href="#123">123</a>         } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="124" href="#124">124</a>             <strong class="jxr_keyword">return</strong> lastUseTime;
+<a class="jxr_linenumber" name="125" href="#125">125</a>         }
+<a class="jxr_linenumber" name="126" href="#126">126</a>     }
+<a class="jxr_linenumber" name="127" href="#127">127</a> 
+<a class="jxr_linenumber" name="128" href="#128">128</a>     @Override
+<a class="jxr_linenumber" name="129" href="#129">129</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> compareTo(PooledObject&lt;T&gt; other) {
+<a class="jxr_linenumber" name="130" href="#130">130</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> lastActiveDiff = <strong class="jxr_keyword">this</strong>.getLastReturnTime() - other.getLastReturnTime();
+<a class="jxr_linenumber" name="131" href="#131">131</a>         <strong class="jxr_keyword">if</strong> (lastActiveDiff == 0) {
+<a class="jxr_linenumber" name="132" href="#132">132</a>             <em class="jxr_comment">// Make sure the natural ordering is broadly consistent with equals</em>
+<a class="jxr_linenumber" name="133" href="#133">133</a>             <em class="jxr_comment">// although this will break down if distinct objects have the same</em>
+<a class="jxr_linenumber" name="134" href="#134">134</a>             <em class="jxr_comment">// identity hash code.</em>
+<a class="jxr_linenumber" name="135" href="#135">135</a>             <em class="jxr_comment">// see java.lang.Comparable Javadocs</em>
+<a class="jxr_linenumber" name="136" href="#136">136</a>             <strong class="jxr_keyword">return</strong> System.identityHashCode(<strong class="jxr_keyword">this</strong>) - System.identityHashCode(other);
+<a class="jxr_linenumber" name="137" href="#137">137</a>         }
+<a class="jxr_linenumber" name="138" href="#138">138</a>         <em class="jxr_comment">// handle int overflow</em>
+<a class="jxr_linenumber" name="139" href="#139">139</a>         <strong class="jxr_keyword">return</strong> (<strong class="jxr_keyword">int</strong>)Math.min(Math.max(lastActiveDiff, Integer.MIN_VALUE), Integer.MAX_VALUE);
+<a class="jxr_linenumber" name="140" href="#140">140</a>     }
+<a class="jxr_linenumber" name="141" href="#141">141</a> 
+<a class="jxr_linenumber" name="142" href="#142">142</a>     @Override
+<a class="jxr_linenumber" name="143" href="#143">143</a>     <strong class="jxr_keyword">public</strong> String toString() {
+<a class="jxr_linenumber" name="144" href="#144">144</a>         StringBuilder result = <strong class="jxr_keyword">new</strong> StringBuilder();
+<a class="jxr_linenumber" name="145" href="#145">145</a>         result.append(<span class="jxr_string">"Object: "</span>);
+<a class="jxr_linenumber" name="146" href="#146">146</a>         result.append(object.toString());
+<a class="jxr_linenumber" name="147" href="#147">147</a>         result.append(<span class="jxr_string">", State: "</span>);
+<a class="jxr_linenumber" name="148" href="#148">148</a>         <strong class="jxr_keyword">synchronized</strong> (<strong class="jxr_keyword">this</strong>) {
+<a class="jxr_linenumber" name="149" href="#149">149</a>             result.append(state.toString());
+<a class="jxr_linenumber" name="150" href="#150">150</a>         }
+<a class="jxr_linenumber" name="151" href="#151">151</a>         <strong class="jxr_keyword">return</strong> result.toString();
+<a class="jxr_linenumber" name="152" href="#152">152</a>         <em class="jxr_comment">// TODO add other attributes</em>
+<a class="jxr_linenumber" name="153" href="#153">153</a>     }
+<a class="jxr_linenumber" name="154" href="#154">154</a> 
+<a class="jxr_linenumber" name="155" href="#155">155</a>     @Override
+<a class="jxr_linenumber" name="156" href="#156">156</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> startEvictionTest() {
+<a class="jxr_linenumber" name="157" href="#157">157</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.IDLE) {
+<a class="jxr_linenumber" name="158" href="#158">158</a>             state = PooledObjectState.EVICTION;
+<a class="jxr_linenumber" name="159" href="#159">159</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="160" href="#160">160</a>         }
+<a class="jxr_linenumber" name="161" href="#161">161</a> 
+<a class="jxr_linenumber" name="162" href="#162">162</a>         <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="163" href="#163">163</a>     }
+<a class="jxr_linenumber" name="164" href="#164">164</a> 
+<a class="jxr_linenumber" name="165" href="#165">165</a>     @Override
+<a class="jxr_linenumber" name="166" href="#166">166</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> endEvictionTest(
+<a class="jxr_linenumber" name="167" href="#167">167</a>             Deque&lt;PooledObject&lt;T&gt;&gt; idleQueue) {
+<a class="jxr_linenumber" name="168" href="#168">168</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION) {
+<a class="jxr_linenumber" name="169" href="#169">169</a>             state = PooledObjectState.IDLE;
+<a class="jxr_linenumber" name="170" href="#170">170</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="171" href="#171">171</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION_RETURN_TO_HEAD) {
+<a class="jxr_linenumber" name="172" href="#172">172</a>             state = PooledObjectState.IDLE;
+<a class="jxr_linenumber" name="173" href="#173">173</a>             <strong class="jxr_keyword">if</strong> (!idleQueue.offerFirst(<strong class="jxr_keyword">this</strong>)) {
+<a class="jxr_linenumber" name="174" href="#174">174</a>                 <em class="jxr_comment">// TODO - Should never happen</em>
+<a class="jxr_linenumber" name="175" href="#175">175</a>             }
+<a class="jxr_linenumber" name="176" href="#176">176</a>         }
+<a class="jxr_linenumber" name="177" href="#177">177</a> 
+<a class="jxr_linenumber" name="178" href="#178">178</a>         <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="179" href="#179">179</a>     }
+<a class="jxr_linenumber" name="180" href="#180">180</a> 
+<a class="jxr_linenumber" name="181" href="#181">181</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="182" href="#182">182</a> <em class="jxr_javadoccomment">     * Allocates the object.</em>
+<a class="jxr_linenumber" name="183" href="#183">183</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="184" href="#184">184</a> <em class="jxr_javadoccomment">     * @return {@code true} if the original state was {@link PooledObjectState#IDLE IDLE}</em>
+<a class="jxr_linenumber" name="185" href="#185">185</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="186" href="#186">186</a>     @Override
+<a class="jxr_linenumber" name="187" href="#187">187</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> allocate() {
+<a class="jxr_linenumber" name="188" href="#188">188</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.IDLE) {
+<a class="jxr_linenumber" name="189" href="#189">189</a>             state = PooledObjectState.ALLOCATED;
+<a class="jxr_linenumber" name="190" href="#190">190</a>             lastBorrowTime = System.currentTimeMillis();
+<a class="jxr_linenumber" name="191" href="#191">191</a>             lastUseTime = lastBorrowTime;
+<a class="jxr_linenumber" name="192" href="#192">192</a>             borrowedCount++;
+<a class="jxr_linenumber" name="193" href="#193">193</a>             <strong class="jxr_keyword">if</strong> (logAbandoned) {
+<a class="jxr_linenumber" name="194" href="#194">194</a>                 borrowedBy = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a>();
+<a class="jxr_linenumber" name="195" href="#195">195</a>             }
+<a class="jxr_linenumber" name="196" href="#196">196</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="197" href="#197">197</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (state == PooledObjectState.EVICTION) {
+<a class="jxr_linenumber" name="198" href="#198">198</a>             <em class="jxr_comment">// TODO Allocate anyway and ignore eviction test</em>
+<a class="jxr_linenumber" name="199" href="#199">199</a>             state = PooledObjectState.EVICTION_RETURN_TO_HEAD;
+<a class="jxr_linenumber" name="200" href="#200">200</a>             <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="201" href="#201">201</a>         }
+<a class="jxr_linenumber" name="202" href="#202">202</a>         <em class="jxr_comment">// TODO if validating and testOnBorrow == true then pre-allocate for</em>
+<a class="jxr_linenumber" name="203" href="#203">203</a>         <em class="jxr_comment">// performance</em>
+<a class="jxr_linenumber" name="204" href="#204">204</a>         <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="205" href="#205">205</a>     }
+<a class="jxr_linenumber" name="206" href="#206">206</a> 
+<a class="jxr_linenumber" name="207" href="#207">207</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="208" href="#208">208</a> <em class="jxr_javadoccomment">     * Deallocates the object and sets it {@link PooledObjectState#IDLE IDLE}</em>
+<a class="jxr_linenumber" name="209" href="#209">209</a> <em class="jxr_javadoccomment">     * if it is currently {@link PooledObjectState#ALLOCATED ALLOCATED}.</em>
+<a class="jxr_linenumber" name="210" href="#210">210</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="211" href="#211">211</a> <em class="jxr_javadoccomment">     * @return {@code true} if the state was {@link PooledObjectState#ALLOCATED ALLOCATED}</em>
+<a class="jxr_linenumber" name="212" href="#212">212</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="213" href="#213">213</a>     @Override
+<a class="jxr_linenumber" name="214" href="#214">214</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">boolean</strong> deallocate() {
+<a class="jxr_linenumber" name="215" href="#215">215</a>         <strong class="jxr_keyword">if</strong> (state == PooledObjectState.ALLOCATED ||
+<a class="jxr_linenumber" name="216" href="#216">216</a>                 state == PooledObjectState.RETURNING) {
+<a class="jxr_linenumber" name="217" href="#217">217</a>             state = PooledObjectState.IDLE;
+<a class="jxr_linenumber" name="218" href="#218">218</a>             lastReturnTime = System.currentTimeMillis();
+<a class="jxr_linenumber" name="219" href="#219">219</a>             <strong class="jxr_keyword">if</strong> (borrowedBy != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="220" href="#220">220</a>                 borrowedBy = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="221" href="#221">221</a>             }
+<a class="jxr_linenumber" name="222" href="#222">222</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="223" href="#223">223</a>         }
+<a class="jxr_linenumber" name="224" href="#224">224</a> 
+<a class="jxr_linenumber" name="225" href="#225">225</a>         <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="226" href="#226">226</a>     }
+<a class="jxr_linenumber" name="227" href="#227">227</a> 
+<a class="jxr_linenumber" name="228" href="#228">228</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="229" href="#229">229</a> <em class="jxr_javadoccomment">     * Sets the state to {@link PooledObjectState#INVALID INVALID}</em>
+<a class="jxr_linenumber" name="230" href="#230">230</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="231" href="#231">231</a>     @Override
+<a class="jxr_linenumber" name="232" href="#232">232</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> invalidate() {
+<a class="jxr_linenumber" name="233" href="#233">233</a>         state = PooledObjectState.INVALID;
+<a class="jxr_linenumber" name="234" href="#234">234</a>     }
+<a class="jxr_linenumber" name="235" href="#235">235</a> 
+<a class="jxr_linenumber" name="236" href="#236">236</a>     @Override
+<a class="jxr_linenumber" name="237" href="#237">237</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> use() {
+<a class="jxr_linenumber" name="238" href="#238">238</a>         lastUseTime = System.currentTimeMillis();
+<a class="jxr_linenumber" name="239" href="#239">239</a>         usedBy = <strong class="jxr_keyword">new</strong> Exception(<span class="jxr_string">"The last code to use this object was:"</span>);
+<a class="jxr_linenumber" name="240" href="#240">240</a>     }
+<a class="jxr_linenumber" name="241" href="#241">241</a> 
+<a class="jxr_linenumber" name="242" href="#242">242</a>     @Override
+<a class="jxr_linenumber" name="243" href="#243">243</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> printStackTrace(PrintWriter writer) {
+<a class="jxr_linenumber" name="244" href="#244">244</a>         Exception borrowedByCopy = <strong class="jxr_keyword">this</strong>.borrowedBy;
+<a class="jxr_linenumber" name="245" href="#245">245</a>         <strong class="jxr_keyword">if</strong> (borrowedByCopy != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="246" href="#246">246</a>             borrowedByCopy.printStackTrace(writer);
+<a class="jxr_linenumber" name="247" href="#247">247</a>         }
+<a class="jxr_linenumber" name="248" href="#248">248</a>         Exception usedByCopy = <strong class="jxr_keyword">this</strong>.usedBy;
+<a class="jxr_linenumber" name="249" href="#249">249</a>         <strong class="jxr_keyword">if</strong> (usedByCopy != <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="250" href="#250">250</a>             usedByCopy.printStackTrace(writer);
+<a class="jxr_linenumber" name="251" href="#251">251</a>         }
+<a class="jxr_linenumber" name="252" href="#252">252</a>     }
+<a class="jxr_linenumber" name="253" href="#253">253</a> 
+<a class="jxr_linenumber" name="254" href="#254">254</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="255" href="#255">255</a> <em class="jxr_javadoccomment">     * Returns the state of this object.</em>
+<a class="jxr_linenumber" name="256" href="#256">256</a> <em class="jxr_javadoccomment">     * @return state</em>
+<a class="jxr_linenumber" name="257" href="#257">257</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="258" href="#258">258</a>     @Override
+<a class="jxr_linenumber" name="259" href="#259">259</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <a href="../../../../../org/apache/commons/pool2/PooledObjectState.html">PooledObjectState</a> getState() {
+<a class="jxr_linenumber" name="260" href="#260">260</a>         <strong class="jxr_keyword">return</strong> state;
+<a class="jxr_linenumber" name="261" href="#261">261</a>     }
+<a class="jxr_linenumber" name="262" href="#262">262</a> 
+<a class="jxr_linenumber" name="263" href="#263">263</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="264" href="#264">264</a> <em class="jxr_javadoccomment">     * Marks the pooled object as abandoned.</em>
+<a class="jxr_linenumber" name="265" href="#265">265</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="266" href="#266">266</a>     @Override
+<a class="jxr_linenumber" name="267" href="#267">267</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> markAbandoned() {
+<a class="jxr_linenumber" name="268" href="#268">268</a>         state = PooledObjectState.ABANDONED;
+<a class="jxr_linenumber" name="269" href="#269">269</a>     }
+<a class="jxr_linenumber" name="270" href="#270">270</a> 
+<a class="jxr_linenumber" name="271" href="#271">271</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="272" href="#272">272</a> <em class="jxr_javadoccomment">     * Marks the object as returning to the pool.</em>
+<a class="jxr_linenumber" name="273" href="#273">273</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="274" href="#274">274</a>     @Override
+<a class="jxr_linenumber" name="275" href="#275">275</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">synchronized</strong> <strong class="jxr_keyword">void</strong> markReturning() {
+<a class="jxr_linenumber" name="276" href="#276">276</a>         state = PooledObjectState.RETURNING;
+<a class="jxr_linenumber" name="277" href="#277">277</a>     }
+<a class="jxr_linenumber" name="278" href="#278">278</a> 
+<a class="jxr_linenumber" name="279" href="#279">279</a>     @Override
+<a class="jxr_linenumber" name="280" href="#280">280</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setLogAbandoned(<strong class="jxr_keyword">boolean</strong> logAbandoned) {
+<a class="jxr_linenumber" name="281" href="#281">281</a>         <strong class="jxr_keyword">this</strong>.logAbandoned = logAbandoned;
+<a class="jxr_linenumber" name="282" href="#282">282</a>     }
+<a class="jxr_linenumber" name="283" href="#283">283</a> 
+<a class="jxr_linenumber" name="284" href="#284">284</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="285" href="#285">285</a> <em class="jxr_javadoccomment">     * Used to track how an object was obtained from the pool (the stack trace</em>
+<a class="jxr_linenumber" name="286" href="#286">286</a> <em class="jxr_javadoccomment">     * of the exception will show which code borrowed the object) and when the</em>
+<a class="jxr_linenumber" name="287" href="#287">287</a> <em class="jxr_javadoccomment">     * object was borrowed.</em>
+<a class="jxr_linenumber" name="288" href="#288">288</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="289" href="#289">289</a>     <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a> <strong class="jxr_keyword">extends</strong> Exception {
+<a class="jxr_linenumber" name="290" href="#290">290</a> 
+<a class="jxr_linenumber" name="291" href="#291">291</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> serialVersionUID = 7398692158058772916L;
+<a class="jxr_linenumber" name="292" href="#292">292</a> 
+<a class="jxr_linenumber" name="293" href="#293">293</a>         <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Date format */</em>
+<a class="jxr_linenumber" name="294" href="#294">294</a>         <em class="jxr_comment">//@GuardedBy("this")</em>
+<a class="jxr_linenumber" name="295" href="#295">295</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> SimpleDateFormat format = <strong class="jxr_keyword">new</strong> SimpleDateFormat
+<a class="jxr_linenumber" name="296" href="#296">296</a>             (<span class="jxr_string">"'Pooled object created' yyyy-MM-dd HH:mm:ss Z "</span> +
+<a class="jxr_linenumber" name="297" href="#297">297</a>              <span class="jxr_string">"'by the following code has not been returned to the pool:'"</span>);
+<a class="jxr_linenumber" name="298" href="#298">298</a> 
+<a class="jxr_linenumber" name="299" href="#299">299</a>         <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">long</strong> _createdTime;
+<a class="jxr_linenumber" name="300" href="#300">300</a> 
+<a class="jxr_linenumber" name="301" href="#301">301</a>         <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="302" href="#302">302</a> <em class="jxr_javadoccomment">         * Create a new instance.</em>
+<a class="jxr_linenumber" name="303" href="#303">303</a> <em class="jxr_javadoccomment">         * &lt;p&gt;</em>
+<a class="jxr_linenumber" name="304" href="#304">304</a> <em class="jxr_javadoccomment">         * @see Exception#Exception()</em>
+<a class="jxr_linenumber" name="305" href="#305">305</a> <em class="jxr_javadoccomment">         */</em>
+<a class="jxr_linenumber" name="306" href="#306">306</a>         <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/pool2/impl/DefaultPooledObject.html">AbandonedObjectCreatedException</a>() {
+<a class="jxr_linenumber" name="307" href="#307">307</a>             <strong class="jxr_keyword">super</strong>();
+<a class="jxr_linenumber" name="308" href="#308">308</a>             _createdTime = System.currentTimeMillis();
+<a class="jxr_linenumber" name="309" href="#309">309</a>         }
+<a class="jxr_linenumber" name="310" href="#310">310</a> 
+<a class="jxr_linenumber" name="311" href="#311">311</a>         <em class="jxr_comment">// Override getMessage to avoid creating objects and formatting</em>
+<a class="jxr_linenumber" name="312" href="#312">312</a>         <em class="jxr_comment">// dates unless the log message will actually be used.</em>
+<a class="jxr_linenumber" name="313" href="#313">313</a>         @Override
+<a class="jxr_linenumber" name="314" href="#314">314</a>         <strong class="jxr_keyword">public</strong> String getMessage() {
+<a class="jxr_linenumber" name="315" href="#315">315</a>             String msg;
+<a class="jxr_linenumber" name="316" href="#316">316</a>             <strong class="jxr_keyword">synchronized</strong>(format) {
+<a class="jxr_linenumber" name="317" href="#317">317</a>                 msg = format.format(<strong class="jxr_keyword">new</strong> Date(_createdTime));
+<a class="jxr_linenumber" name="318" href="#318">318</a>             }
+<a class="jxr_linenumber" name="319" href="#319">319</a>             <strong class="jxr_keyword">return</strong> msg;
+<a class="jxr_linenumber" name="320" href="#320">320</a>         }
+<a class="jxr_linenumber" name="321" href="#321">321</a>     }
+<a class="jxr_linenumber" name="322" href="#322">322</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfo.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfo.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfo.html Tue Dec 31 22:45:58 2013
@@ -114,4 +114,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.html Tue Dec 31 22:45:58 2013
@@ -115,10 +115,10 @@
 <a class="jxr_linenumber" name="105" href="#105">105</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="106" href="#106">106</a> <em class="jxr_javadoccomment">     * Get the number of times this object has been borrowed.</em>
 <a class="jxr_linenumber" name="107" href="#107">107</a> <em class="jxr_javadoccomment">     * @return The number of times this object has been borrowed.</em>
-<a class="jxr_linenumber" name="108" href="#108">108</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="109" href="#109">109</a>     <strong class="jxr_keyword">long</strong> getBorrowedCount();
-<a class="jxr_linenumber" name="110" href="#110">110</a> }
+<a class="jxr_linenumber" name="108" href="#108">108</a> <em class="jxr_javadoccomment">     * @since 2.1</em>
+<a class="jxr_linenumber" name="109" href="#109">109</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="110" href="#110">110</a>     <strong class="jxr_keyword">long</strong> getBorrowedCount();
+<a class="jxr_linenumber" name="111" href="#111">111</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionConfig.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionConfig.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionConfig.html Tue Dec 31 22:45:58 2013
@@ -112,4 +112,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionPolicy.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionPolicy.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionPolicy.html Tue Dec 31 22:45:58 2013
@@ -58,4 +58,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionTimer.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionTimer.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/EvictionTimer.html Tue Dec 31 22:45:58 2013
@@ -143,4 +143,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPool.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPool.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPool.html Tue Dec 31 22:45:58 2013
@@ -1509,4 +1509,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.html Tue Dec 31 22:45:58 2013
@@ -195,4 +195,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolMXBean.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolMXBean.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericKeyedObjectPoolMXBean.html Tue Dec 31 22:45:58 2013
@@ -203,4 +203,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPool.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPool.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPool.html Tue Dec 31 22:45:58 2013
@@ -1118,4 +1118,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolConfig.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolConfig.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolConfig.html Tue Dec 31 22:45:58 2013
@@ -157,4 +157,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolMXBean.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolMXBean.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/GenericObjectPoolMXBean.html Tue Dec 31 22:45:58 2013
@@ -217,4 +217,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/InterruptibleReentrantLock.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/InterruptibleReentrantLock.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/InterruptibleReentrantLock.html Tue Dec 31 22:45:58 2013
@@ -58,4 +58,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

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 Tue Dec 31 22:45:58 2013
@@ -1320,4 +1320,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

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 Tue Dec 31 22:45:58 2013
@@ -137,4 +137,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PooledSoftReference.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PooledSoftReference.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/PooledSoftReference.html Tue Dec 31 22:45:58 2013
@@ -111,4 +111,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/SoftReferenceObjectPool.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/SoftReferenceObjectPool.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/impl/SoftReferenceObjectPool.html Tue Dec 31 22:45:58 2013
@@ -444,4 +444,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/BaseProxyHandler.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/BaseProxyHandler.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/BaseProxyHandler.html Tue Dec 31 22:45:58 2013
@@ -116,4 +116,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxyHandler.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxyHandler.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxyHandler.html Tue Dec 31 22:45:58 2013
@@ -65,4 +65,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxySource.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxySource.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/CglibProxySource.html Tue Dec 31 22:45:58 2013
@@ -80,4 +80,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxyHandler.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxyHandler.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxyHandler.html Tue Dec 31 22:45:58 2013
@@ -64,4 +64,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxySource.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxySource.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/JdkProxySource.html Tue Dec 31 22:45:58 2013
@@ -78,4 +78,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedKeyedObjectPool.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedKeyedObjectPool.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedKeyedObjectPool.html Tue Dec 31 22:45:58 2013
@@ -130,4 +130,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedObjectPool.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedObjectPool.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxiedObjectPool.html Tue Dec 31 22:45:58 2013
@@ -122,4 +122,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxySource.html
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxySource.html (original)
+++ websites/production/commons/content/proper/commons-pool/xref/org/apache/commons/pool2/proxy/ProxySource.html Tue Dec 31 22:45:58 2013
@@ -62,4 +62,3 @@
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>
-

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 Tue Dec 31 22:45:58 2013
@@ -28,4 +28,3 @@
 
 	</body>
 </html>
-

Modified: websites/production/commons/content/proper/commons-pool/xref/stylesheet.css
==============================================================================
--- websites/production/commons/content/proper/commons-pool/xref/stylesheet.css (original)
+++ websites/production/commons/content/proper/commons-pool/xref/stylesheet.css Tue Dec 31 22:45:58 2013
@@ -113,4 +113,4 @@ hr {
 .jxr_keyword
 {
     color: #000;
-}
+}
\ No newline at end of file