Skip to content
Snippets Groups Projects
Commit f73603c2 authored by Christian Humer's avatar Christian Humer
Browse files

Remove unused @Cached annotation from non @Specialization annotated method.

parent c10ef1bf
No related branches found
No related tags found
No related merge requests found
......@@ -356,8 +356,7 @@ public class TrigExpFunctions {
double apply(int i);
}
protected RDoubleVector doFun(int length, IntDoubleFunction yFun, IntDoubleFunction xFun, //
@Cached("create()") CountedLoopConditionProfile profile) {
protected RDoubleVector doFun(int length, IntDoubleFunction yFun, IntDoubleFunction xFun, CountedLoopConditionProfile profile) {
controlVisibility();
double[] resultVector = new double[length];
profile.profileLength(length);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment