Fix bug with member assignment order in PushReplication.

The groupCache was being used before it was set in the class. Fix the
ordering of the assignment.

Change-Id: I969c2c9e51934cc01e0b4983a7c884d8f88fb34f
This commit is contained in:
Colby Ranger
2012-05-11 15:50:42 -07:00
parent 5d047b2df3
commit f66a290f34

View File

@@ -113,8 +113,8 @@ public class PushReplication implements ReplicationQueue {
database = db;
replicationUserFactory = ruf;
gitRepositoryManager = grm;
configs = allConfigs(site);
groupCache = gc;
configs = allConfigs(site);
}
@Override