this is sort of a git question, but my code is java
public class IslandCreator {
public void create(Player player) {
// TODO: Implement later
}
public Location nextIslandLoaction() {
// This is implemented & complete
}
do you guys ever commit empty methods with a comment to implement later because the rest of your code isn't ready yet? i don't have other classes implemented that this class will use yet so my create method can't be implemented until some other parts of my project are done