Update of /cvsroot/webmacro/webmacro/src/org/webmacro/directive
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16940/src/org/webmacro/directive
Modified Files:
IfDirective.java
Log Message:
Eclipse thinks elsifargs could be null, though we know it could not
Index: IfDirective.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/directive/IfDirective.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** IfDirective.java 20 Mar 2008 11:54:42 -0000 1.17
--- IfDirective.java 31 Mar 2008 17:32:21 -0000 1.18
***************
*** 115,119 ****
// OK, how about no else-if subdirectives?
! if (elseifCount == 0)
{
// If condition is static and false -- just return the else block
--- 115,119 ----
// OK, how about no else-if subdirectives?
! if (elseifArgs == null)
{
// If condition is static and false -- just return the else block
|