Kaydet (Commit) 8690639f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Why check that resValue != oldValue

...same as daa6fe41

Change-Id: I0ee61a2f40c234fcb496a70ad5ec913148119597
üst ab489869
......@@ -416,8 +416,7 @@ public class CalcRTL
if (exception == null) {
// if no exception thrown
// check that the new value is set
if ((!ValueComparer.equalValue(resValue, newValue)) ||
(ValueComparer.equalValue(resValue, oldValue))) {
if (!ValueComparer.equalValue(resValue, newValue)) {
System.out.println("Value for '" + propName +
"' hasn't changed as expected");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment