mirror of
https://github.com/aikar/commands.git
synced 2026-06-01 23:02:18 +00:00
* misc improvements (as suggested by intellij) * first draft of the DI functionality (#85) * address review * reenabled disabled inspections * overload registerDependency method * inject fields of superclasses two and remove invalid sponge default dependency
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package co.aikar.acfexample;
|
||||
|
||||
public class SomeHandler {
|
||||
|
||||
private String someField;
|
||||
|
||||
public String getSomeField() {
|
||||
return someField;
|
||||
}
|
||||
|
||||
public void setSomeField(String someField) {
|
||||
this.someField = someField;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user