OPENJPA-2099: simple doc change

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1236281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2012-01-26 16:37:16 +00:00
parent e37a589072
commit 7def6f8a67
2 changed files with 4 additions and 4 deletions
openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql
openjpa-lib/src/main/java/org/apache/openjpa/lib/util

View File

@ -43,7 +43,7 @@ import org.apache.openjpa.lib.util.FlexibleThreadLocal;
* @see SQLBuffer#bind(Object, Column)
*
* @author Pinaki Poddar
*
* @since 2.2.0
*/
public class BindParameter {
// Is this parameter specified by user or our own runtime
@ -109,5 +109,4 @@ public class BindParameter {
public Object getKey() {
return _key;
}
}

View File

@ -25,13 +25,14 @@ import java.util.Map;
* A thread-specific storage similar to {@link ThreadLocal}.
*
* @author Pinaki Poddar
*
* @since 2.2.0
*/
public class FlexibleThreadLocal<T> {
private final Map<Thread, T> _values = new HashMap<Thread, T>();
/**
* Gets the value associated with the calling thread or its equivalent.
* Gets the value associated with the calling thread or its
* {@link #isEquivalent(Thread, Thread) equivalent}.
*
* @see #isEquivalent(Thread, Thread)
*/