com.github.netkorp.telegram.framework.commands.abstracts.AbstractSimpleCommand
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 1
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 1
eloc 1
1
package com.github.netkorp.telegram.framework.commands.abstracts;
0 ignored issues
show
Code Smell introduced by
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.SimpleCommand;
4
5
/**
6
 * Wraps the common features and the basic components that the {@link SimpleCommand} needs.
7
 */
8
public abstract class AbstractSimpleCommand extends AbstractCommand implements SimpleCommand {
0 ignored issues
show
Coding Style introduced by
Move this left curly brace to the beginning of next line of code.
Loading history...
9
}
10