Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Oct 21, 2024
1 parent 699942c commit e40ba8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public IterationCodeCursor( final TIntArrayList itcode, final long[] offset )

protected IterationCodeCursor( final IterationCodeCursor c )
{
super( c.position );
super( c.position.clone() );
iter = new IterationCodeIterator<>( c.iter, Point.wrap( position ) );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public IterationCodeListCursor( final ArrayList< TIntArrayList > itcodesList, fi

protected IterationCodeListCursor( final IterationCodeListCursor c )
{
super( c.position );
super( c.position.clone() );
iter = new IterationCodeListIterator<>( c.iter, Point.wrap( position ) );
}

Expand Down

0 comments on commit e40ba8b

Please sign in to comment.