diff options
author | James Moger <james.moger@gitblit.com> | 2014-03-08 12:15:19 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-03-08 12:15:19 -0500 |
commit | da97a6a8921da24e8d222ba3eea57f9d0f2f8f44 (patch) | |
tree | 96e5935da64cb5d74f6186d34245476d7840e63d /src/main/java | |
parent | b919a7f3f5b8415df7d237b1644193430a64f299 (diff) | |
download | gitblit-da97a6a8921da24e8d222ba3eea57f9d0f2f8f44.tar.gz gitblit-da97a6a8921da24e8d222ba3eea57f9d0f2f8f44.zip |
Documentation
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/gitblit/tickets/BranchTicketService.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/gitblit/tickets/BranchTicketService.java b/src/main/java/com/gitblit/tickets/BranchTicketService.java index 0f71d864..f23a3259 100644 --- a/src/main/java/com/gitblit/tickets/BranchTicketService.java +++ b/src/main/java/com/gitblit/tickets/BranchTicketService.java @@ -189,7 +189,7 @@ public class BranchTicketService extends ITicketService implements RefsChangedLi } /** - * Returns a RefModel for the refs/gitblit/tickets branch in the repository. + * Returns a RefModel for the refs/meta/gitblit/tickets branch in the repository. * If the branch can not be found, null is returned. * * @return a refmodel for the gitblit tickets branch or null @@ -227,7 +227,7 @@ public class BranchTicketService extends ITicketService implements RefsChangedLi } /** - * Creates the refs/gitblit/tickets branch. + * Creates the refs/meta/gitblit/tickets branch. * @param db */ private void createTicketsBranch(Repository db) { @@ -240,7 +240,7 @@ public class BranchTicketService extends ITicketService implements RefsChangedLi * folder with the remaining characters as a subfolder within that folder. * * @param ticketId - * @return the root path of the ticket content on the refs/gitblit/tickets branch + * @return the root path of the ticket content on the refs/meta/gitblit/tickets branch */ private String toTicketPath(long ticketId) { StringBuilder sb = new StringBuilder(); |