InlineEdit: Add method to publish edits

Change-Id: I7f73c716d71a0cf335d99d90bf96452ed3798ad6
This commit is contained in:
David Ostrovsky
2014-04-25 20:30:49 +02:00
committed by David Ostrovsky
parent 0034fabb30
commit a570dbfb06
2 changed files with 216 additions and 2 deletions

View File

@@ -520,7 +520,7 @@ public class ChangeUtil {
return (IdentifiedUser) userProvider.get();
}
private static PatchSet.Id nextPatchSetId(PatchSet.Id id) {
public static PatchSet.Id nextPatchSetId(PatchSet.Id id) {
return new PatchSet.Id(id.getParentKey(), id.get() + 1);
}