mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-01 16:27:59 +01:00
Trace, and don't bother hitting other servers if you have all your data
This commit is contained in:
parent
487ec1101a
commit
2e381e1231
2 changed files with 6 additions and 2 deletions
|
@ -205,6 +205,9 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
|
|||
|
||||
for (SkinServer server : skinServers) {
|
||||
server.getProfileTextures(profile).forEach(textures::putIfAbsent);
|
||||
if (textures.size() == Type.values().length) {
|
||||
return textures;
|
||||
}
|
||||
}
|
||||
|
||||
return textures;
|
||||
|
|
|
@ -5,6 +5,7 @@ import java.util.Collections;
|
|||
import java.util.Map;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.util.Strings;
|
||||
|
||||
import com.google.gson.JsonParseException;
|
||||
|
@ -35,8 +36,8 @@ public abstract class AbstractSkinServer implements SkinServer {
|
|||
if (payload != null && payload.getTextures() != null) {
|
||||
return payload.getTextures();
|
||||
}
|
||||
} catch (IOException ignored) {
|
||||
|
||||
} catch (IOException e) {
|
||||
LogManager.getLogger().trace(e);
|
||||
}
|
||||
|
||||
return Collections.emptyMap();
|
||||
|
|
Loading…
Reference in a new issue