Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -454,11 +454,11 @@ public boolean stringEqual(RubyString string, RubyString other) {

@RubiniusPrimitive(name = "string_find_character")
@ImportStatic(StringGuards.class)
public static abstract class StringFindCharacterPrimitiveNode extends RubiniusPrimitiveNode {
public static abstract class StringFindCharacterNode extends RubiniusPrimitiveNode {

@Child private TaintResultNode taintResultNode;

public StringFindCharacterPrimitiveNode(RubyContext context, SourceSection sourceSection) {
public StringFindCharacterNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

@@ -652,9 +652,9 @@ public int stringCharacterByteIndexMultiByteEncoding(RubyString string, int inde

@RubiniusPrimitive(name = "string_byte_character_index", needsSelf = false)
@ImportStatic(StringGuards.class)
public static abstract class StringByteCharacterIndexPrimitiveNode extends RubiniusPrimitiveNode {
public static abstract class StringByteCharacterIndexNode extends RubiniusPrimitiveNode {

public StringByteCharacterIndexPrimitiveNode(RubyContext context, SourceSection sourceSection) {
public StringByteCharacterIndexNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

0 comments on commit 45900ea

Please sign in to comment.