We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b8c7a commit b0ac302Copy full SHA for b0ac302
src/main/java/com/github/underscore/$.java
@@ -1919,7 +1919,7 @@ public List<T> slice(final int start, final int end) {
1919
}
1920
1921
public static <T> List<T> reverse(final Iterable<T> iterable) {
1922
- final List<T> result = (List<T>) clone(newArrayList(iterable));
+ final List<T> result = newArrayList(iterable);
1923
Collections.reverse(result);
1924
return result;
1925
0 commit comments