Skip to content

Commit

Permalink
Fixed compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Leibiusky committed Nov 21, 2010
1 parent 63a1c92 commit 9898e9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private T get(int index) {
String id = nest.cat(JOhmUtils.getId(owner)).cat(field.getName())
.lindex(index);
if (!JOhmUtils.isNullOrEmpty(id)) {
element = JOhm.get(clazz, Integer.valueOf(id));
element = JOhm.<T> get(clazz, Integer.valueOf(id));
}
return element;
}
Expand Down

0 comments on commit 9898e9f

Please sign in to comment.