Madan Jampani

Fix checkstyle error

Change-Id: I54278c0dc5fb4b6bc5081ba8564bae8aa9cc697b
...@@ -61,7 +61,7 @@ public class DefaultDocumentTreeTest { ...@@ -61,7 +61,7 @@ public class DefaultDocumentTreeTest {
61 @Test(expected = IllegalDocumentModificationException.class) 61 @Test(expected = IllegalDocumentModificationException.class)
62 public void testCreateRecursiveRoot() { 62 public void testCreateRecursiveRoot() {
63 DocumentTree<String> tree = new DefaultDocumentTree<>(); 63 DocumentTree<String> tree = new DefaultDocumentTree<>();
64 - tree.createRecursive(path("root"), "bar");; 64 + tree.createRecursive(path("root"), "bar");
65 } 65 }
66 66
67 @Test(expected = IllegalDocumentModificationException.class) 67 @Test(expected = IllegalDocumentModificationException.class)
......