Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 0b09918a2 -> d69dcbfcc
Remove a warning in eclipse Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/94e4d753 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/94e4d753 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/94e4d753 Branch: refs/heads/3.0.x-fixes Commit: 94e4d75369ea6a062f298acddd1c1fffd284c44a Parents: 0b09918 Author: Daniel Kulp <[email protected]> Authored: Mon Dec 22 15:27:28 2014 -0500 Committer: Daniel Kulp <[email protected]> Committed: Tue Dec 23 09:54:34 2014 -0500 ---------------------------------------------------------------------- rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/94e4d753/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java ---------------------------------------------------------------------- diff --git a/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java b/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java index 22b93fa..af50827 100644 --- a/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java +++ b/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/RMManagerTest.java @@ -531,7 +531,7 @@ public class RMManagerTest extends Assert { control.reset(); setUpEndpointForRecovery(endpoint, ei, si, bi, ii); RMMessage m = control.createMock(RMMessage.class); - Capture<Message> mc = new Capture<Message>(); + Capture<Message> mc = Capture.newInstance(); setUpRecoverReliableEndpoint(endpoint, conduit, ss, ds, m, mc); control.replay(); manager.recoverReliableEndpoint(endpoint, conduit);
