Skip to content

Commit

Permalink
Generified ObjCollection.iterator() and cursor()
Browse files Browse the repository at this point in the history
  • Loading branch information
leventov committed Nov 1, 2014
1 parent c184c50 commit 736bd13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public interface CharCollection extends Collection<Character>, Container {
* Comparison of iteration options in the library</a>
*/
@Nonnull
CharCursor cursor();
CharCursor/*<>*/ cursor();

/**
* Returns a new iterator over this collection's elements.
Expand All @@ -138,7 +138,7 @@ public interface CharCollection extends Collection<Character>, Container {
@Deprecated
@Override
@Nonnull
CharIterator iterator();
CharIterator/*<>*/ iterator();

/* if JDK8 jdk */
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ public interface CharSet/*<>*/ extends CharCollection/*<>*/, Set<Character> {
@Deprecated
@Nonnull
@Override
CharIterator iterator();
CharIterator/*<>*/ iterator();
}

0 comments on commit 736bd13

Please sign in to comment.