Extend/Inherit java class - how to?
I have a repo with some kind of config in the style of a YAML file... As an example its something like this:
I wanted to extend it to deal with different system:
Its just an example, doesn't make sense necessarily.
Now in Java, in another repo, I want to account for this indentation/nested change...
How do I correct myself now? A lot of code and test use BirdProperty, but now theres two "systems" of them and I need to somehow also indent/nest my java code with some inheritentance or something.
Keep in mind the above Java and YAML code is probably wrong in itself, but this is sort of what the code and yaml change was from memory.
I wanted to extend it to deal with different system:
Its just an example, doesn't make sense necessarily.
Now in Java, in another repo, I want to account for this indentation/nested change...
How do I correct myself now? A lot of code and test use BirdProperty, but now theres two "systems" of them and I need to somehow also indent/nest my java code with some inheritentance or something.
Keep in mind the above Java and YAML code is probably wrong in itself, but this is sort of what the code and yaml change was from memory.