Skip to content

Commit

Permalink
fix minor sync issue
Browse files Browse the repository at this point in the history
  • Loading branch information
khjxiaogu committed Jan 16, 2025
1 parent b1ba8e6 commit e644ef3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public int get() {
* */
@Override
public void set(int pValue) {
value=conv.apply(pValue);
setValue(conv.apply(pValue));
}
@Override
public T getValue() {
Expand Down Expand Up @@ -197,7 +197,8 @@ public int get(int pIndex) {
@Override
public void set(int pIndex, int pValue) {
values[pIndex]=pValue;
value=lastValue=conv.decode(values);
setValue(conv.decode(values));
lastValue=value;
}
@Override
public int getCount() {
Expand Down

0 comments on commit e644ef3

Please sign in to comment.