Fix creation of missing repositories

createProject method was always returning false even if the project was
successfully created on all the destinations.

false &= true is always false

Change-Id: If30f2f657c6e7ce31639c5839f7beb8f88c48b54
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationQueue.java b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationQueue.java
index 617dc02..95693d9 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationQueue.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/ReplicationQueue.java
@@ -232,7 +232,7 @@
   }
 
   public boolean createProject(Project.NameKey project, String head) {
-    boolean success = false;
+    boolean success = true;
     for (URIish uri : getURIs(project, FilterType.PROJECT_CREATION)) {
       success &= createProject(uri, head);
     }