This commit is contained in:
TheBrokenRail 2020-06-24 22:09:35 -04:00
parent ca6e72d00c
commit 330e16d469
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**1.0.8**
* Remove Debug Code
**1.0.7**
* Fix Loading Maven XML

View File

@ -9,7 +9,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.8.8+build.202
# Mod Properties
mod_version = 1.0.7
mod_version = 1.0.8
maven_group = com.thebrokenrail
# Dependencies

View File

@ -46,7 +46,6 @@ public class MavenStrategy implements ModUpdateStrategy {
SAXReader reader = new SAXReader();
doc = reader.read(new ByteArrayInputStream(data.getBytes()));
} catch (DocumentException e) {
e.printStackTrace();
ModUpdater.getLogger().warn("Maven Repository Sent Invalid Data: " + name);
return null;
}