KorDum
KorDum
Incompatibility with [this](http://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/1289314-1-4-7-1-11-vrashenie-zemli-majnkraftskaya-longer)
```java Objects.equals(desc, EmptyHelper.EMPTY_STRING) ``` Hmm. Here is an code shorter: ```java desc.equals(EmptyHelper.EMPTY_STRING) ``` But why do you write own constant for an empty string? ```java import net.minecraft.util.StringUtils; StringUtils.isNullOrEmpty(desc) ``` or...
The key word `final` is usually used for constants in Java or readonly instance class level fields (initialize in constructor): ```java private final int count; public SomeClass(int count) { this.count...
Tabs indent or spaces?
What about BinniePatcher? It's include more different fixes. https://github.com/Chocohead/Binnie-Patcher It is unfortunate that the code is closed. Follow the footsteps of Binnie567 :(
Can I somehow help the development of version MC1.7.10?
:) I think the authors of the repository are planning global refactoring, which will generate conflicts due to pull requests with fixes. And I don't know whether it makes sense...
@Dream-Master BinniePatcher includes more bugfixes (even more in the next version): https://github.com/Chocohead/Binnie-Patcher/issues/35 @Nedelosk So I'm wondering if it makes sense to make bug fixes for 1.7.10 or use patcher and...
@marcin212 @Nedelosk Can I refactor some code from master-1.7.10 and improve code readability (ex. "par1" to "world", "par2" to "x" etc)?
Because of many issue for 1.7.10 and the tag "need-check-for-1.11" it became difficult to navigate in already fixed issue for 1.7.10. Should we create a duplicate issue for 1.11 if...