Skip to content
Snippets Groups Projects
Commit 3d8420ec authored by Kaushik Lingarkar's avatar Kaushik Lingarkar Committed by Matthias Sohn
Browse files

Make RepoProject#setUpstream public

Applications using JGit such as Gerrit plugins may have their own
manifest parsers. They can start using RepoProject to some extent
with this change. Eventually, they can be migrated to use the
ManifestParser in JGit, however until then, this change can help
make the migration incremental.

Change-Id: I6a32d4f4622c3842eedf7873cdfed2f1ca998f6f
(cherry picked from commit e3e0a1ea)
parent 4bc6eb8a
No related branches found
No related tags found
No related merge requests found
...@@ -411,7 +411,7 @@ public String getUpstream() { ...@@ -411,7 +411,7 @@ public String getUpstream() {
* *
* @since 6.10 * @since 6.10
*/ */
void setUpstream(String upstream) { public void setUpstream(String upstream) {
this.upstream = upstream; this.upstream = upstream;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment