Skip to content

Commit

Permalink
jit: delete unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Dec 17, 2024
1 parent 83b848e commit 425215f
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,6 @@ public abstract class AbstractExprializer<T> {
return builder.checkcast(result, elementType);
}

public static @NotNull FreeJavaExpr makeFunctionApply(
@NotNull FreeExprBuilder builder,
@NotNull ClassDesc returnType,
@NotNull FreeJavaExpr theFunction,
@NotNull FreeJavaExpr theArg
) {
var result = builder.invoke(Constants.FUNCTION, theFunction, ImmutableSeq.of(theArg));
return builder.checkcast(result, returnType);
}

/**
* Actually perform serialization, unlike {@link #serialize}
* which will perform some initialization after a {@code T} is obtained.
Expand Down

0 comments on commit 425215f

Please sign in to comment.