diff --git a/Documentation/cmd-ls-projects.txt b/Documentation/cmd-ls-projects.txt index fb35dc2227..1dd6720148 100644 --- a/Documentation/cmd-ls-projects.txt +++ b/Documentation/cmd-ls-projects.txt @@ -122,16 +122,16 @@ List visible projects: $ ssh -p 29418 review.example.com gerrit ls-projects platform/manifest tools/gerrit -tools/gwtorm +tools/gitiles $ curl http://review.example.com/projects/ platform/manifest tools/gerrit -tools/gwtorm +tools/gitiles $ curl http://review.example.com/projects/tools/ tools/gerrit -tools/gwtorm +tools/gitiles ---- Clone any project visible to the user: diff --git a/Documentation/dev-bazel.txt b/Documentation/dev-bazel.txt index ffd6f01d33..2ab3d446e1 100644 --- a/Documentation/dev-bazel.txt +++ b/Documentation/dev-bazel.txt @@ -374,16 +374,16 @@ repository has precedence. == Building against unpublished Maven JARs -To build against unpublished Maven JARs, like gwtorm or PrologCafe, the custom -JARs must be installed in the local Maven repository (`mvn clean install`) and +To build against unpublished Maven JARs, like PrologCafe, the custom JARs must +be installed in the local Maven repository (`mvn clean install`) and `maven_jar()` must be updated to point to the `MAVEN_LOCAL` Maven repository for that artifact: [source,python] ---- maven_jar( - name = 'gwtorm', - artifact = 'gwtorm:gwtorm:42', + name = 'prolog-runtime', + artifact = 'com.googlecode.prolog-cafe:prolog-runtime:42', repository = MAVEN_LOCAL, ) ---- diff --git a/Documentation/dev-release-deploy-config.txt b/Documentation/dev-release-deploy-config.txt index 541192775a..98a3df572d 100644 --- a/Documentation/dev-release-deploy-config.txt +++ b/Documentation/dev-release-deploy-config.txt @@ -91,7 +91,7 @@ Jar. * `gerrit-maven`: + -Bucket to store Gerrit Subproject Artifacts (e.g. `gwtorm` etc.). +Bucket to store Gerrit Subproject Artifacts (e.g. Prolog Cafe). To upload artifacts to a bucket the user must authenticate with a username and password. The username and password need to be retrieved diff --git a/java/com/google/gerrit/server/ApprovalsUtil.java b/java/com/google/gerrit/server/ApprovalsUtil.java index cb32066c59..05c512303c 100644 --- a/java/com/google/gerrit/server/ApprovalsUtil.java +++ b/java/com/google/gerrit/server/ApprovalsUtil.java @@ -71,8 +71,6 @@ import org.eclipse.jgit.revwalk.RevWalk; * for each reviewer, even if the reviewer hasn't actually given a score to the change. To mark the * "no score" case, a dummy approval, which may live in any of the available categories, with a * score of 0 is used. - * - *

The methods in this class only modify the gwtorm database. */ @Singleton public class ApprovalsUtil { diff --git a/javatests/com/google/gerrit/mail/data/SimpleTextMessage.java b/javatests/com/google/gerrit/mail/data/SimpleTextMessage.java index a8f5b94a92..c4737e629b 100644 --- a/javatests/com/google/gerrit/mail/data/SimpleTextMessage.java +++ b/javatests/com/google/gerrit/mail/data/SimpleTextMessage.java @@ -39,7 +39,7 @@ public class SimpleTextMessage extends RawMailMessage { + "when I try to load this change:\n" + "\n" + " Error in GET /changes/90018/detail?O=10004\n" - + " com.google.gwtorm.OrmException: java.lang.NullPointerException\n" + + " com.google.gerrit.exceptions.StorageException: java.lang.NullPointerException\n" + "\tat com.google.gerrit.change.ChangeJson.format(ChangeJson.java:303)\n" + "\tat com.google.gerrit.change.ChangeJson.format(ChangeJson.java:285)\n" + "\tat com.google.gerrit.change.ChangeJson.format(ChangeJson.java:263)\n"