This commit is contained in:
Gabriele C 2016-05-19 23:06:55 +02:00
parent 4d634086cd
commit 95b65ae20a
3 changed files with 1 additions and 19 deletions

View File

@ -4,9 +4,7 @@ import fr.xephi.authme.AuthMe;
import fr.xephi.authme.command.CommandService; import fr.xephi.authme.command.CommandService;
import fr.xephi.authme.command.ExecutableCommand; import fr.xephi.authme.command.ExecutableCommand;
import fr.xephi.authme.datasource.DataSource; import fr.xephi.authme.datasource.DataSource;
import fr.xephi.authme.hooks.PluginHooks;
import fr.xephi.authme.task.PurgeTask; import fr.xephi.authme.task.PurgeTask;
import fr.xephi.authme.util.BukkitService;
import org.bukkit.ChatColor; import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
@ -26,12 +24,6 @@ public class PurgeCommand implements ExecutableCommand {
@Inject @Inject
private DataSource dataSource; private DataSource dataSource;
@Inject
private PluginHooks pluginHooks;
@Inject
private BukkitService bukkitService;
@Inject @Inject
private AuthMe plugin; private AuthMe plugin;

View File

@ -114,6 +114,7 @@ class FieldInjection<T> implements Injection<T> {
return null; return null;
} }
@SuppressWarnings("unchecked")
private static <T> Constructor<T> getDefaultConstructor(Class<T> clazz) { private static <T> Constructor<T> getDefaultConstructor(Class<T> clazz) {
try { try {
Constructor<?> defaultConstructor = clazz.getDeclaredConstructor(); Constructor<?> defaultConstructor = clazz.getDeclaredConstructor();

View File

@ -9,11 +9,6 @@ import javax.inject.Inject;
public abstract class InvalidPostConstruct { public abstract class InvalidPostConstruct {
public static final class WithParams { public static final class WithParams {
@Inject
private AlphaService alphaService;
@Inject
private ProvidedClass providedClass;
WithParams() { } WithParams() { }
@PostConstruct @PostConstruct
@ -41,9 +36,6 @@ public abstract class InvalidPostConstruct {
} }
public static final class NotVoidReturnType { public static final class NotVoidReturnType {
@Inject
private ProvidedClass providedClass;
@PostConstruct @PostConstruct
public int returnsInt() { public int returnsInt() {
return 42; return 42;
@ -51,9 +43,6 @@ public abstract class InvalidPostConstruct {
} }
public static final class MultiplePostConstructs { public static final class MultiplePostConstructs {
@Inject
private ProvidedClass providedClass;
@PostConstruct @PostConstruct
public void postConstruct1() { public void postConstruct1() {
// -- // --