Skip to content

Commit 9685fd1

Browse files
committed
Release 1.0.2
1 parent e026ff2 commit 9685fd1

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ compileJava.options.encoding = "UTF-8"
77
compileTestJava.options.encoding = "UTF-8"
88

99
allprojects {
10-
version = '1.0.2-SNAPSHOT'
10+
version = '1.0.2'
1111
group = 'cz.foresttech'
1212

1313
repositories {

velocity/src/main/java/cz/foresttech/commandapi/velocity/ProxyServerProvider.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
import com.velocitypowered.api.proxy.ProxyServer;
44

5+
/**
6+
* Interface for providing {@link ProxyServer} instance to ForestCommandAPI methods.
7+
* Main class of the Velocity plugin should implement this interface.
8+
*/
59
public interface ProxyServerProvider {
610

711
ProxyServer getProxyServer();

velocity/src/main/java/cz/foresttech/commandapi/velocity/VelocityCommandHandler.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
import java.util.List;
77

8+
/**
9+
* Support handler for Velocity commands as they do not include specifics about the
10+
* command inside interaction methods.
11+
*/
812
public class VelocityCommandHandler implements SimpleCommand {
913

1014
private final String commandName;

0 commit comments

Comments
 (0)