Revert "Reduce UUID migration batch size. Fixes #576"

As per https://github.com/LogBlock/LogBlock/issues/576#issuecomment-74503498 the limit is confirmed at 100 names per request.

This reverts commit b3977d3e00.
This commit is contained in:
Philip Cass
2015-02-16 14:13:43 +00:00
parent b3977d3e00
commit 7e49094699

View File

@@ -30,7 +30,7 @@ import static org.bukkit.Bukkit.getLogger;
class Updater class Updater
{ {
private final LogBlock logblock; private final LogBlock logblock;
final int UUID_CONVERT_BATCH_SIZE = 75; final int UUID_CONVERT_BATCH_SIZE = 100;
Updater(LogBlock logblock) { Updater(LogBlock logblock) {
this.logblock = logblock; this.logblock = logblock;