On 27 Mar 2003, <[EMAIL PROTECTED]> wrote: > log("checking label " + stLabel.getName(), Project.MSG_DEBUG); > - if (stLabel.getName().equals(this.label)) { > + if (stLabel != null && !stLabel.isDeleted() && > stLabel.getName().equals(this.label)) {
given that the log line will have thrown a NPE if the first test in the if statement fails, it looks a bit redundant 8-) I've kept it in anyway. Stefan