refactor: Remove redundant loggers

This commit is contained in:
NotMyFault 2021-10-21 17:26:16 +02:00
parent c07ba4e88e
commit d4eda78818
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
2 changed files with 0 additions and 2 deletions

View File

@ -119,7 +119,6 @@ public final class BundledBlockData {
if (url == null) {
throw new IOException("Could not find blocks.json");
}
LOGGER.info("Using {} for bundled block data.", url);
String data = Resources.toString(url, Charset.defaultCharset());
List<BlockEntry> entries = gson.fromJson(data, new TypeToken<List<BlockEntry>>() {
}.getType());

View File

@ -104,7 +104,6 @@ public final class BundledItemData {
if (url == null) {
throw new IOException("Could not find items.json");
}
LOGGER.info("Using {} for bundled item data.", url);
String data = Resources.toString(url, Charset.defaultCharset());
List<ItemEntry> entries = gson.fromJson(data, new TypeToken<List<ItemEntry>>() {
}.getType());