You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2014/06/19 13:13:58 UTC

git commit: [CXF-5806] Reverting the unintended change to the abstract test

Repository: cxf
Updated Branches:
  refs/heads/master e28454a04 -> 5dcb1f334


[CXF-5806] Reverting the unintended change to the abstract test


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/5dcb1f33
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/5dcb1f33
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/5dcb1f33

Branch: refs/heads/master
Commit: 5dcb1f334dacda20a5c0d04f131e7a1007c74a40
Parents: e28454a
Author: Sergey Beryozkin <sb...@talend.com>
Authored: Thu Jun 19 12:13:38 2014 +0100
Committer: Sergey Beryozkin <sb...@talend.com>
Committed: Thu Jun 19 12:13:38 2014 +0100

----------------------------------------------------------------------
 .../jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/5dcb1f33/rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java
----------------------------------------------------------------------
diff --git a/rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java b/rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java
index 1230479..a53db1b 100644
--- a/rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java
+++ b/rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/AbstractJPATypedQueryVisitorTest.java
@@ -45,9 +45,10 @@ import org.junit.Before;
 
 public abstract class AbstractJPATypedQueryVisitorTest extends Assert {
 
-    protected EntityManager em;
-    
     private EntityManagerFactory emFactory;
+
+    private EntityManager em;
+
     private Connection connection;
 
     protected abstract SearchConditionParser<Book> getParser();