Replace "the the" occurences with "the" (wrong repetition)
Change-Id: I01cbebd79e1d3470a4f00e55a228d57ac156b676
This commit is contained in:
parent
c7bdc5b485
commit
db9c8ad778
Documentation
gerrit-extension-api/src/main/java/com/google/gerrit/extensions/config
gerrit-httpd/src/main/java/com/google/gerrit/httpd
gerrit-server/src/main/java/com/google/gerrit/server/change
@ -27,7 +27,7 @@ To take advantage of this feature, one should:
|
|||||||
.. a url that starts with the link:config-gerrit.html#gerrit.canonicalWebUrl[`gerrit.canonicalWebUrl`]
|
.. a url that starts with the link:config-gerrit.html#gerrit.canonicalWebUrl[`gerrit.canonicalWebUrl`]
|
||||||
|
|
||||||
When a commit in a project is merged, Gerrit checks for superprojects
|
When a commit in a project is merged, Gerrit checks for superprojects
|
||||||
that are subscribed to the the project and automatically updates those
|
that are subscribed to the project and automatically updates those
|
||||||
superprojects with a commit that updates the gitlink for the project.
|
superprojects with a commit that updates the gitlink for the project.
|
||||||
|
|
||||||
This feature is enabled by default and can be disabled
|
This feature is enabled by default and can be disabled
|
||||||
|
@ -23,8 +23,8 @@ public interface ExternalIncludedIn {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns additional entries for IncludedInInfo as multimap where the key is the row title and
|
* Returns additional entries for IncludedInInfo as multimap where the key is the row title and
|
||||||
* the the values are a list of systems that include the given commit (e.g. names of servers on
|
* the values are a list of systems that include the given commit (e.g. names of servers on which
|
||||||
* which this commit is deployed).
|
* this commit is deployed).
|
||||||
*
|
*
|
||||||
* <p>The tags and branches in which the commit is included are provided so that a RevWalk can be
|
* <p>The tags and branches in which the commit is included are provided so that a RevWalk can be
|
||||||
* avoided when a system runs a certain tag or branch.
|
* avoided when a system runs a certain tag or branch.
|
||||||
|
@ -106,7 +106,7 @@ public abstract class AllRequestFilter implements Filter {
|
|||||||
throws IOException, ServletException {
|
throws IOException, ServletException {
|
||||||
while (itr.hasNext()) {
|
while (itr.hasNext()) {
|
||||||
AllRequestFilter filter = itr.next();
|
AllRequestFilter filter = itr.next();
|
||||||
// To avoid {@code synchronized} on the the whole filtering (and
|
// To avoid {@code synchronized} on the whole filtering (and
|
||||||
// thereby killing concurrency), we start the below disjunction
|
// thereby killing concurrency), we start the below disjunction
|
||||||
// with an unsynchronized check for containment. This
|
// with an unsynchronized check for containment. This
|
||||||
// unsynchronized check is always correct if no filters got
|
// unsynchronized check is always correct if no filters got
|
||||||
|
@ -144,7 +144,7 @@ public class IncludedInResolver {
|
|||||||
* <li>after = commits with time >= target.getCommitTime()
|
* <li>after = commits with time >= target.getCommitTime()
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* Each of the before/after lists is sorted by the the commit time.
|
* Each of the before/after lists is sorted by the commit time.
|
||||||
*
|
*
|
||||||
* @param before
|
* @param before
|
||||||
* @param after
|
* @param after
|
||||||
|
Loading…
x
Reference in New Issue
Block a user