Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
fix type of Array.sequence() for #6804
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking committed Feb 9, 2017
1 parent 2399521 commit cf74cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/runtime/ceylon/language/Array.java
Expand Up @@ -1970,7 +1970,7 @@ else if (step == 1) {

@SuppressWarnings("unchecked")
@Override
@TypeInfo("ceylon.language::Sequential<Element>")
@TypeInfo("ceylon.language::Sequence<Element>|ceylon.language::Empty")
public Sequential<? extends Element> sequence() {
if (getEmpty()) {
return (Sequential<? extends Element>) empty_.get_();
Expand Down

0 comments on commit cf74cc7

Please sign in to comment.