I have seen that its because of not having a null check in the following code
private Node T() throws ScanException {
Token t = peekAtCurentToken();
//The t is null here
switch (t.type) {
in the
ch.qos.logback.core.subst.Parser
class in the logback-core-1.1.1.jar file
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
I have seen that its because of not having a null check in the following code
in the
class in the logback-core-1.1.1.jar file