We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a089f07 commit 3f009f3Copy full SHA for 3f009f3
src/main/java/org/truffleruby/cext/ValueWrapperManager.java
@@ -357,9 +357,7 @@ protected static boolean isSharedObject(ValueWrapper wrapper) {
357
358
public static HandleBlock allocateNewBlock(RubyContext context, RubyLanguage language) {
359
HandleBlockHolder holder = getBlockHolder(context, language);
360
- HandleBlock block = holder.handleBlock;
361
-
362
- block = context.getValueWrapperManager().addToBlockMap(context, language);
+ HandleBlock block = context.getValueWrapperManager().addToBlockMap(context, language);
363
364
holder.handleBlock = block;
365
return block;
0 commit comments