Merge pull request #451 from ganymedes01/patch-1

Remove duplicate check.
This commit is contained in:
pahimar 2013-10-17 17:22:31 -07:00
commit 8ee349fc5d

View file

@ -140,9 +140,6 @@ public class VersionHelper implements Runnable {
else if (result == OUTDATED && remoteVersion != null && remoteUpdateLocation != null) {
return StatCollector.translateToLocalFormatted(Strings.OUTDATED_MESSAGE, Reference.MOD_NAME, remoteVersion, Loader.instance().getMCVersionString(), remoteUpdateLocation);
}
else if (result == OUTDATED && remoteVersion != null && remoteUpdateLocation != null) {
return StatCollector.translateToLocalFormatted(Strings.OUTDATED_MESSAGE, Reference.MOD_NAME, remoteVersion, Loader.instance().getMCVersionString(), remoteUpdateLocation);
}
else if (result == ERROR) {
return StatCollector.translateToLocal(Strings.GENERAL_ERROR_MESSAGE);
}