Issues (369)

commands/abstracts/AbstractMultistageCommand.java (2 issues)

1
package com.github.netkorp.telegram.framework.commands.abstracts;
0 ignored issues
show
It is a best practice to supply a copyright/licence header in your code. Your organisation probably has a template for that.
Loading history...
2
3
import com.github.netkorp.telegram.framework.commands.interfaces.MultistageCommand;
4
5
/**
6
 * Wraps the common features and the basic components that the {@link MultistageCommand} needs.
7
 */
8
public abstract class AbstractMultistageCommand extends AbstractCommand implements MultistageCommand {
0 ignored issues
show
Move this left curly brace to the beginning of next line of code.
Loading history...
9
}
10