1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2025-09-01 11:26:56 +00:00

fix: 修复 JavaDoc 错误

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
2017-02-08 14:38:46 +08:00
parent 0f65ea5b1c
commit 839698160c
4 changed files with 5 additions and 8 deletions

View File

@ -7,12 +7,6 @@
<version>1.7</version>
<build>
<finalName>${project.artifactId}</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>

View File

@ -90,7 +90,9 @@ public class C {
* @param json
* Json信息
* @param type
* 类型(0=>消息 2=>ActionBar)
* 类型
* 0. 消息
* 2. ActionBar
*/
public static void sendJson(org.bukkit.entity.Player receivingPacket, String json, int type) {
Object packet;

View File

@ -83,7 +83,7 @@ public class CommandKit {
* 命令名称
* @param aliases
* 别名
* @return
* @return {@link PluginCommand}
*/
public static PluginCommand create(JavaPlugin plugin, String name, String... aliases) {
try {

View File

@ -550,6 +550,7 @@ public class Reflect {
*
* @param <T>
* A convenience generic parameter for automatic unsafe casting
* @return cast Type Object
*/
public <T> T get() {
return (T) object;