chore: documentation fix

This commit is contained in:
zaaarf 2023-06-11 14:54:42 +02:00
parent 2b3bdf3e8f
commit e4f8a565f6
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -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) {