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 2015/08/06 15:23:20 UTC

cxf git commit: Fixing a 3.0.x build failure

Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes 38e25eda5 -> 42afffa8f


Fixing a 3.0.x build failure


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

Branch: refs/heads/3.0.x-fixes
Commit: 42afffa8fc913192ca1018641b745bbfeb475353
Parents: 38e25ed
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Thu Aug 6 14:22:58 2015 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Thu Aug 6 14:22:58 2015 +0100

----------------------------------------------------------------------
 .../apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/42afffa8/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java
----------------------------------------------------------------------
diff --git a/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java b/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java
index 8cf176e..f2a0cab 100644
--- a/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java
+++ b/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/impl/tl/ThreadLocalInvocationHandlerTest.java
@@ -46,7 +46,7 @@ public class ThreadLocalInvocationHandlerTest {
 
     @Before
     public void setUp() throws Exception {
-        ThreadLocalInvocationHandler<TestClass> subject = new ThreadLocalInvocationHandler<>();
+        ThreadLocalInvocationHandler<TestClass> subject = new ThreadLocalInvocationHandler<TestClass>();
         subject.set(new TestClass());
 
         testIface = (TestIface) Proxy.newProxyInstance(ThreadLocalInvocationHandler.class.getClassLoader(),