[LANG-501] There was a problem with inconsistent line endings in the last commit, so the svn:eol-style property was not set. Fixing now.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@883101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oliver Heger 2009-11-22 17:03:10 +00:00
parent 21df5c4fce
commit 63e4b09f23
1 changed files with 123 additions and 125 deletions

View File

@ -48,13 +48,11 @@
*
* <pre>
* // a Callable that performs a complex computation
* Callable<Integer> computationCallable = new MyComputationCallable();
*
* Callable&lt;Integer&gt; computationCallable = new MyComputationCallable();
* // setup the background initializer
* CallableBackgroundInitializer<Integer> initializer =
* CallableBackgroundInitializer&lt;Integer&gt; initializer =
* new CallableBackgroundInitializer(computationCallable);
* initializer.start();
*
* // Now do some other things. Initialization runs in a parallel thread
* ...
* // Wait for the end of initialization and access the result
@ -63,7 +61,7 @@
*
* </p>
*
* @version $Id: $
* @version $Id$
* @param <T> the type of the object managed by this initializer class
*/
public class CallableBackgroundInitializer<T> extends BackgroundInitializer<T> {