There are several functions inside Commander.java which are empty
See original GitHub issueSeveral functions have an @Override but are simply empty:
There’s no comment indication if this is intentional or not. See for example #8660 which caused issues with Changeling commanders.
Issue Analytics
- State:
 - Created 2 years ago
 - Comments:7 (6 by maintainers)
 
Top Results From Across the Web
c# - Multiple Main Functions - Stack Overflow
Just for clarification, a class can have more than one main method. For example, you could have public static void main() and public...
Read more >Stack empty() Method in Java - GeeksforGeeks
empty () method in Java is used to check whether a stack is empty or not. The method is of boolean type and...
Read more >5 ways to force Java garbage collection - TheServerSide.com
If developers need the JVM to free up some heap space, here are five ways to motivate and then force garbage collection in...
Read more >public static void main(String[] args) - Java main method
The main method can contain code to execute or call other methods, and it can be placed in any class that's part of...
Read more >Lesson: A Closer Look at the "Hello World!" Application
*/ class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); //Display the string. } } In the Java programming language ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

At least some of these
MageObjectinterface methods (e.g.adjustCosts,adjustTargets) are relics that shouldn’t exist at all anymore–they were refactored some time ago into theCostAdjusterandTargetAdjusterclasses. I’ll look at cleaning them up after the next release.Were there comments added for why the above functions should be empty?
For example, why does
setStartingLoyaltydo nothing versus callingSourceObject.setStartingLoyalty(startingLoyalty)?Same for all of the others.