Removed/unified semi-redundant else-if branch

This commit is contained in:
hns 2004-04-02 12:17:33 +00:00
parent 750f209035
commit eee11438d7

View file

@ -396,12 +396,11 @@ public class RhinoEngine implements ScriptingEngine {
try { try {
Object prop = so.get(propname, so); Object prop = so.get(propname, so);
if ((prop == null) || (prop == Undefined.instance)) { if ((prop == null) || (prop == Undefined.instance)
|| (prop == ScriptableObject.NOT_FOUND)) {
return null; return null;
} else if (prop instanceof Wrapper) { } else if (prop instanceof Wrapper) {
return ((Wrapper) prop).unwrap(); return ((Wrapper) prop).unwrap();
} else if (prop == Undefined.instance || prop == ScriptableObject.NOT_FOUND) {
return null;
} else { } else {
// not all Rhino types convert to a string as expected // not all Rhino types convert to a string as expected
// when calling toString() - try to do better by using // when calling toString() - try to do better by using