Skip to content

Commit

Permalink
Updating stackIterator to public to fix the build failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
linlin-s committed Nov 7, 2023
1 parent c902f0a commit cb769f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/amazon/ion/impl/_Private_RecyclingStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @param <T> the type of elements stored.
*/
public final class _Private_RecyclingStack<T> implements Iterable<T> {
private $Iterator stackIterator;
public $Iterator stackIterator;
@Override
public ListIterator<T> iterator() {
if (stackIterator != null) {
Expand Down

0 comments on commit cb769f5

Please sign in to comment.