List accounts sorted by ID

Currently the accounts are listed without order.

Change it to use the new `all` method, which returns accounts
ordered by ID.

Change-Id: Ia67ab5c396a50903b5fc6d58d4edf995711158ef
diff --git a/src/main/java/com/googlesource/gerrit/plugins/adminconsole/ListUsersCommand.java b/src/main/java/com/googlesource/gerrit/plugins/adminconsole/ListUsersCommand.java
index 54a0bfc..12c3b97 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/adminconsole/ListUsersCommand.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/adminconsole/ListUsersCommand.java
@@ -37,7 +37,7 @@
 
   @Override
   protected void run() throws UnloggedFailure, Failure, Exception {
-    ResultSet<Account> accounts = db.accounts().iterateAllEntities();
+    ResultSet<Account> accounts = db.accounts().all();
     for (Account account : accounts) {
       String out = new StringBuilder()
         .append(account.getId().toString())