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 2012/01/19 16:20:44 UTC

svn commit: r1233425 - /cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java

Author: sergeyb
Date: Thu Jan 19 15:20:43 2012
New Revision: 1233425

URL: http://svn.apache.org/viewvc?rev=1233425&view=rev
Log:
Fixing another compilation failure

Modified:
    cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java

Modified: cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java?rev=1233425&r1=1233424&r2=1233425&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java (original)
+++ cxf/branches/2.5.x-fixes/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/provider/JSONProviderTest.java Thu Jan 19 15:20:43 2012
@@ -275,7 +275,7 @@ public class JSONProviderTest extends As
     @SuppressWarnings("unchecked")
     @Test
     public void testWriteToSingleTag2NoNs() throws Exception {
-        JSONProvider<TagVO2> p = new JSONProvider<TagVO2>();
+        JSONProvider p = new JSONProvider();
         p.setIgnoreNamespaces(true);
         TagVO2 tag = createTag2("a", "b");