Skip to content

Commit

Permalink
[Truffle] Shortened a class name to work better with eCryptfs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Apr 2, 2015
1 parent 9fe48f1 commit 4c2ccbd
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -56,13 +56,13 @@ public Object encodingConverterAllocate(RubyEncoding fromEncoding, RubyEncoding
}

@RubiniusPrimitive(name = "encoding_converter_primitive_convert")
public static abstract class EncodingConverterPrimitiveConvertNode extends RubiniusPrimitiveNode {
public static abstract class PrimitiveConvertNode extends RubiniusPrimitiveNode {

public EncodingConverterPrimitiveConvertNode(RubyContext context, SourceSection sourceSection) {
public PrimitiveConvertNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

public EncodingConverterPrimitiveConvertNode(EncodingConverterPrimitiveConvertNode prev) {
public PrimitiveConvertNode(PrimitiveConvertNode prev) {
super(prev);
}

Expand Down

0 comments on commit 4c2ccbd

Please sign in to comment.