Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maru32768 committed Jan 13, 2022
1 parent 70e7996 commit 5e7c91e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'net.kunmc.lab'
version '0.5.2'
version '0.6.0'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package org.bukkit.craftbukkit.libs.org.codehaus.plexus.util;

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

public class ReflectionUtils {
public static List<Field> getFieldsIncludingSuperclasses(Class<?> clazz) {
return new ArrayList<>();
}
}

0 comments on commit 5e7c91e

Please sign in to comment.