Skip to content
This repository was archived by the owner on Apr 19, 2018. It is now read-only.

Update IntProperty.java #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update IntProperty.java
Fix StackOverflowError
bracadabra committed Sep 2, 2013
commit 06bf3ab1f1a659d5c47b3f33b2fed5154882cf87
4 changes: 2 additions & 2 deletions library/src/com/nineoldandroids/util/IntProperty.java
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ public IntProperty(String name) {

@Override
final public void set(T object, Integer value) {
set(object, value.intValue());
setValue(object, value.intValue());
}

}
}