Skip to content

Commit

Permalink
Removing workarounds, one at a time... ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
n ddrylliog committed Nov 23, 2009
1 parent 5c1ef2f commit 7f31cd8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions yajl/Yajl.ooc
Expand Up @@ -37,9 +37,7 @@ ValueList: class extends ArrayList<Value<Pointer>> {
}

get: func ~typed <T> (index: Int, T: Class) -> T {
// FIXME this workaround shouldn't be needed
//elem := get(index) as Value
elem : Value<T> = get(index)
elem := get(index) as Value<T>
return elem value as T
}
}
Expand Down

0 comments on commit 7f31cd8

Please sign in to comment.