mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 16:04:50 +01:00
chore: renamed method to reflect new functioning
This commit is contained in:
parent
9b529a866c
commit
51d9375e0b
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public class ASTUtils {
|
||||||
* @param m the {@link ExecutableElement} for the method
|
* @param m the {@link ExecutableElement} for the method
|
||||||
* @return a {@link String} containing the relevant descriptor
|
* @return a {@link String} containing the relevant descriptor
|
||||||
*/
|
*/
|
||||||
public static String descriptorFromMethodSpec(ExecutableElement m) {
|
public static String descriptorFromExecutableElement(ExecutableElement m) {
|
||||||
StringBuilder methodSignature = new StringBuilder();
|
StringBuilder methodSignature = new StringBuilder();
|
||||||
methodSignature.append("(");
|
methodSignature.append("(");
|
||||||
m.getParameters().forEach(p -> methodSignature.append(descriptorFromType(p.asType())));
|
m.getParameters().forEach(p -> methodSignature.append(descriptorFromType(p.asType())));
|
||||||
|
|
Loading…
Reference in a new issue