0005-Suppressing-unnecessary-warning-in-test.patch

L. Ziegler, 04/11/2014 03:37 PM

Download (819 Bytes)

View differences:

test/rsb/transport/XOPTest.java
53 53
    @Test
54 54
    public void testInValidDoc() {
55 55
        try {
56
            XOP xop = new XOP("test");
56
            @SuppressWarnings("unused")
57
			XOP xop = new XOP("test");
57 58
        } catch (SyntaxException ex) {
58 59
            assertTrue(true);
59 60
        }
60
-