Skip to content

Commit

Permalink
✨ 代码优化
Browse files Browse the repository at this point in the history
  • Loading branch information
li-xunhuan committed Jan 21, 2025
1 parent 63efafa commit 59b0779
Showing 1 changed file with 3 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,14 @@

package net.dreamlu.mica.core.spel;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

import java.lang.reflect.Method;

/**
* ExpressionRootObject
*
* @author L.cm
*/
@Getter
@RequiredArgsConstructor
public class MicaExpressionRootObject {
private final Method method;

private final Object[] args;

private final Object target;

private final Class<?> targetClass;

private final Method targetMethod;
public record MicaExpressionRootObject(Method method, Object[] args,
Object target, Class<?> targetClass,
Method targetMethod) {
}

0 comments on commit 59b0779

Please sign in to comment.