summaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/ftbsc')
-rw-r--r--src/main/java/ftbsc/lll/IInjector.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/ftbsc/lll/IInjector.java b/src/main/java/ftbsc/lll/IInjector.java
index df4ae3a..d223536 100644
--- a/src/main/java/ftbsc/lll/IInjector.java
+++ b/src/main/java/ftbsc/lll/IInjector.java
@@ -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();