Fix ChangeDetailFactory's invocation of PatchSetDetailFactory

I flipped the order of the arguments, but did not correctly
update all callers.

Change-Id: Iae14ec35374342f53bc353082db35cb8750a750a
Signed-off-by: Shawn O. Pearce <sop@google.com>
diff --git a/ReleaseNotes/ReleaseNotes-2.1.7.1.txt b/ReleaseNotes/ReleaseNotes-2.1.7.2.txt
similarity index 100%
rename from ReleaseNotes/ReleaseNotes-2.1.7.1.txt
rename to ReleaseNotes/ReleaseNotes-2.1.7.2.txt
diff --git a/ReleaseNotes/index.txt b/ReleaseNotes/index.txt
index 6f02004..d340a09 100644
--- a/ReleaseNotes/index.txt
+++ b/ReleaseNotes/index.txt
@@ -4,7 +4,7 @@
 [[2_1]]
 Version 2.1.x
 -------------
-* link:ReleaseNotes-2.1.7.1.html[2.1.7.1],
+* link:ReleaseNotes-2.1.7.2.html[2.1.7.2],
 * link:ReleaseNotes-2.1.7.html[2.1.7],
 * link:ReleaseNotes-2.1.6.html[2.1.6],
   link:ReleaseNotes-2.1.6.1.html[2.1.6.1]
diff --git a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/rpc/changedetail/ChangeDetailFactory.java b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/rpc/changedetail/ChangeDetailFactory.java
index 560b155..4016641 100644
--- a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/rpc/changedetail/ChangeDetailFactory.java
+++ b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/rpc/changedetail/ChangeDetailFactory.java
@@ -194,7 +194,7 @@
       NoSuchEntityException, PatchSetInfoNotAvailableException,
       NoSuchChangeException {
     final PatchSet.Id psId = detail.getChange().currentPatchSetId();
-    final PatchSetDetailFactory loader = patchSetDetail.create(psId, null, null);
+    final PatchSetDetailFactory loader = patchSetDetail.create(null, psId, null);
     loader.patchSet = detail.getCurrentPatchSet();
     loader.control = control;
     detail.setCurrentPatchSetDetail(loader.call());