aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-06-11 14:54:42 +0200
committer zaaarf <zaaarf@proton.me>2023-06-11 14:54:42 +0200
commite4f8a565f6fe94a73ce8e3e8d2e70a9f314fa56a (patch)
treeec6e355201166c879f6f84a8e9ec296993e4f658
parent2b3bdf3e8f10b49691bdb852c3469c4c6b347484 (diff)
chore: documentation fix0.0.1
-rw-r--r--src/main/java/ftbsc/lll/mapper/tools/MappingUtils.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/ftbsc/lll/mapper/tools/MappingUtils.java b/src/main/java/ftbsc/lll/mapper/tools/MappingUtils.java
index 918052a..e68a60f 100644
--- a/src/main/java/ftbsc/lll/mapper/tools/MappingUtils.java
+++ b/src/main/java/ftbsc/lll/mapper/tools/MappingUtils.java
@@ -10,6 +10,7 @@ public class MappingUtils {
* Obfuscates a method descriptor, replacing its class references
* with their obfuscated counterparts.
* @param descriptor a {@link String} containing the descriptor
+ * @param mapper the {@link IMapper} to use for the process
* @return the obfuscated descriptor
*/
public static String obfuscateMethodDescriptor(String descriptor, IMapper mapper) {
@@ -28,6 +29,7 @@ public class MappingUtils {
* Given a {@link Type} and a valid {@link IMapper} it returns its obfuscated
* counterpart.
* @param type the type in question
+ * @param mapper the {@link IMapper} to use for the process
* @return the obfuscated type
*/
public static Type obfuscateType(Type type, IMapper mapper) {