Skip to content

Commit

Permalink
Try without replaces
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Nov 1, 2024
1 parent 38be8eb commit 823a34c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ public static double readDouble(
return read.readDouble((SObject) frame.getArguments()[0]);
}

@Specialization(replaces = {"readLong", "readDouble"})
@Specialization // (replaces = {"readLong", "readDouble"})
public static Object readObject(
final VirtualFrame frame,
@SuppressWarnings("unused") final int fieldIdx,
Expand Down Expand Up @@ -516,7 +516,7 @@ public static double readDouble(final VirtualFrame frame,
return read.readDouble(rcvr);
}

@Specialization(replaces = {"readLong", "readDouble"})
@Specialization // (replaces = {"readLong", "readDouble"})
public static Object readObject(final VirtualFrame frame,
@SuppressWarnings("unused") final int fieldIdx,
final int contextLevel,
Expand Down

0 comments on commit 823a34c

Please sign in to comment.