I currently have two bots published, both of which are abstracted by a common class:
public class Bot1 extends AbstractBot {
}
public class Bot2 extends AbstractBot {
}
I'm now preparing to publish a third bot, but the commits also include changes to AbstractBot.
Given that I haven't...