[ruby/json] Remove double semicolon at end of line in parser
https://github.com/ruby/json/commit/f6d6ca3c17
This commit is contained in:
parent
f2e51146f8
commit
e077be119b
@ -1940,7 +1940,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
|
||||
source = convert_encoding(StringValue(source));
|
||||
StringValue(source);
|
||||
json->len = RSTRING_LEN(source);
|
||||
json->source = RSTRING_PTR(source);;
|
||||
json->source = RSTRING_PTR(source);
|
||||
json->Vsource = source;
|
||||
return self;
|
||||
}
|
||||
|
@ -835,7 +835,7 @@ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self)
|
||||
source = convert_encoding(StringValue(source));
|
||||
StringValue(source);
|
||||
json->len = RSTRING_LEN(source);
|
||||
json->source = RSTRING_PTR(source);;
|
||||
json->source = RSTRING_PTR(source);
|
||||
json->Vsource = source;
|
||||
return self;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user