Remove kind attribute from REST containers

It seems like new REST endpoints don't include "kind" attribute. This
change removes it from the code and documentation.

Change-Id: Ia73fb92ce01461e7de140b138fc72583b00170bc
This commit is contained in:
David Ostrovsky
2014-05-29 22:23:41 +02:00
committed by David Ostrovsky
parent 7af3ec348e
commit 631c963931
20 changed files with 0 additions and 111 deletions

View File

@@ -205,7 +205,6 @@ public class CommentsTest {
private static void assertComment(PatchLineComment plc, CommentInfo ci) {
assertEquals(plc.getKey().get(), ci.id);
assertEquals(plc.getParentUuid(), ci.inReplyTo);
assertEquals("gerritcodereview#comment", ci.kind);
assertEquals(plc.getMessage(), ci.message);
assertNotNull(ci.author);
assertEquals(plc.getAuthor(), ci.author._id);