null pointer fix

This commit is contained in:
Daniel Gultsch 2014-03-31 09:43:58 +02:00
parent ad3e23fa7c
commit 92e0713373
1 changed files with 2 additions and 2 deletions

View File

@ -56,11 +56,11 @@ public class Tag {
}
public boolean isStart(String needle) {
return (this.type == START) && (this.name.equals(needle));
return (this.type == START) && (needle.equals(this.name));
}
public boolean isEnd(String needle) {
return (this.type == END) && (this.name.equals(needle));
return (this.type == END) && (needle.equals(this.name));
}
public boolean isNo() {