#352 - Remove deprecated API - ValuePair getValue1() getValue2() ... use getNewValue() getOldValue()

This commit is contained in:
Robin Bygrave
2015-07-24 20:15:13 +12:00
parent c00484026c
commit 3baa5bca46
@@ -36,22 +36,6 @@ public class ValuePair {
public Object getOldValue() {
return oldValue;
}
/**
* Return the new value.
*/
@Deprecated
public Object getValue1() {
return newValue;
}
/**
* Return the old value.
*/
@Deprecated
public Object getValue2() {
return oldValue;
}
/**
* Set the new value.