Namespace name comparation fix (dottedchain "" == name_id 0

Method body creation arguments fix
This commit is contained in:
Jindra Petřík
2015-10-28 09:20:41 +01:00
parent 81c06e7d37
commit 87a1a9206f
3 changed files with 11 additions and 4 deletions
@@ -129,6 +129,9 @@ public class Namespace {
if (name == null) {
return false;
}
if (name.equals("") && name_index == 0) {
return true;
}
if (name_index == 0) {
return false;
}