mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
chore: IInjector now has default reason
This commit is contained in:
parent
b270d41395
commit
0e2162ca48
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ public interface IInjector {
|
|||
/**
|
||||
* @return reason for this patch, for logging
|
||||
*/
|
||||
default String reason() { return ""; }
|
||||
default String reason() { return "No reason specified"; }
|
||||
|
||||
/**
|
||||
* This is used by the Launch Plugin to identify which classes should be
|
||||
|
@ -47,7 +47,7 @@ public interface IInjector {
|
|||
* (IF)V - returns void, takes in int and float
|
||||
* (Ljava/lang/Object;)I - returns int, takes in a java.lang.Object
|
||||
* (ILjava/lang/String;)[I - returns int[], takes in an int and a String
|
||||
* See <a>https://asm.ow2.io/asm4-guide.pdf</a> for a more detailed explanation.
|
||||
* See <a href="https://asm.ow2.io/asm4-guide.pdf">https://asm.ow2.io/asm4-guide.pdf</a> for a more detailed explanation.
|
||||
* @return descriptor of method to target.
|
||||
*/
|
||||
String methodDesc();
|
||||
|
|
Loading…
Reference in a new issue