forked from jasder/antlr
Remove unused parameter in `_loadString`
The usage of this method was removed in commit 51edf3cece
, but the parameter remained.
This commit is contained in:
parent
74779f334a
commit
a7f3efb7eb
|
@ -11,7 +11,7 @@ require('./polyfills/fromcodepoint');
|
|||
|
||||
// Vacuum all input from a string and then treat it like a buffer.
|
||||
|
||||
function _loadString(stream, decodeToUnicodeCodePoints) {
|
||||
function _loadString(stream) {
|
||||
stream._index = 0;
|
||||
stream.data = [];
|
||||
if (stream.decodeToUnicodeCodePoints) {
|
||||
|
|
Loading…
Reference in New Issue