You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/05/11 19:37:58 UTC

svn commit: r1337295 - /cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java

Author: dkulp
Date: Fri May 11 17:37:58 2012
New Revision: 1337295

URL: http://svn.apache.org/viewvc?rev=1337295&view=rev
Log:
Merged revisions 1336705 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1336705 | dkulp | 2012-05-10 10:10:37 -0400 (Thu, 10 May 2012) | 2 lines

  Fix ecipse warning

........

Modified:
    cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java

Modified: cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java?rev=1337295&r1=1337294&r2=1337295&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java (original)
+++ cxf/branches/2.5.x-fixes/rt/ws/security/src/test/java/org/apache/cxf/ws/security/sts/STSClientTest.java Fri May 11 17:37:58 2012
@@ -48,7 +48,7 @@ public class STSClientTest extends Asser
                                                                       true).getContext();
         Unmarshaller um = ctx.createUnmarshaller();
         InputStream inStream = getClass().getResourceAsStream("epr.xml");
-        JAXBElement el = (JAXBElement)um.unmarshal(inStream);
+        JAXBElement<?> el = (JAXBElement<?>)um.unmarshal(inStream);
         EndpointReferenceType ref = (EndpointReferenceType)el.getValue();
 
         Bus bus = BusFactory.getThreadDefaultBus();