Merge "Make refs/draft-comments/ consistent with refs/starred-changes/"
This commit is contained in:
@@ -92,28 +92,13 @@ public class RefNames {
|
||||
|
||||
public static String refsDraftComments(Account.Id accountId,
|
||||
Change.Id changeId) {
|
||||
StringBuilder r = buildRefsDraftCommentsPrefix(accountId);
|
||||
StringBuilder r = buildRefsPrefix(REFS_DRAFT_COMMENTS, accountId);
|
||||
r.append(changeId.get());
|
||||
return r.toString();
|
||||
}
|
||||
|
||||
public static String refsDraftCommentsPrefix(Account.Id accountId) {
|
||||
return buildRefsDraftCommentsPrefix(accountId).toString();
|
||||
}
|
||||
|
||||
public static StringBuilder buildRefsDraftCommentsPrefix(
|
||||
Account.Id accountId) {
|
||||
StringBuilder r = new StringBuilder();
|
||||
r.append(REFS_DRAFT_COMMENTS);
|
||||
int n = accountId.get() % 100;
|
||||
if (n < 10) {
|
||||
r.append('0');
|
||||
}
|
||||
r.append(n);
|
||||
r.append('/');
|
||||
r.append(accountId.get());
|
||||
r.append('-');
|
||||
return r;
|
||||
return buildRefsPrefix(REFS_DRAFT_COMMENTS, accountId).toString();
|
||||
}
|
||||
|
||||
public static String refsStarredChanges(Account.Id accountId,
|
||||
|
Reference in New Issue
Block a user