You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then tab completion on value that starts with quote will fail to EOFError exception:
INFO: Error while parsing line
org.jline.reader.EOFError: Missing closing quote
at org.jline.reader.impl.DefaultParser.parse(DefaultParser.java:166)
at org.jline.reader.impl.LineReaderImpl.doComplete(LineReaderImpl.java:3865)
at org.jline.reader.impl.LineReaderImpl.expandOrComplete(LineReaderImpl.java:3788)
at org.jline.reader.impl.LineReaderImpl.readLine(LineReaderImpl.java:548)
at com.smo.sdn.controller.rest.executor.CommandLine.interact(CommandLine.java:242)
at com.smo.sdn.controller.rest.executor.RestExecutor.main(RestExecutor.java:73)
This can be fixed by rewriting the if statement, DefaultParser.java:165 as
if (eofOnUnclosedQuote && quoteStart >= 0 && context!=ParseContext.COMPLETE) {
Thank you for the great work!!!
The text was updated successfully, but these errors were encountered:
When parser is created as
then tab completion on value that starts with quote will fail to EOFError exception:
This can be fixed by rewriting the if statement, DefaultParser.java:165 as
Thank you for the great work!!!
The text was updated successfully, but these errors were encountered: