|
From: Alan E. <ez...@us...> - 2006-03-16 23:34:32
|
Update of /cvsroot/jedit/plugins/Console/console In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2289/console Modified Files: CommandOutputParser.java Log Message: NPE fix Index: CommandOutputParser.java =================================================================== RCS file: /cvsroot/jedit/plugins/Console/console/CommandOutputParser.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CommandOutputParser.java 16 Mar 2006 19:59:26 -0000 1.11 +++ CommandOutputParser.java 16 Mar 2006 23:34:29 -0000 1.12 @@ -204,7 +204,7 @@ private DefaultErrorSource errorSource; - private ErrorListModel errorMatchers; + private ErrorListModel errorMatchers = ErrorListModel.load(); private ErrorMatcher lastMatcher; |