Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Mar 6, 2024
1 parent f1bf852 commit e704085
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
* TODO
*
*/
final public class ConvertedRandomAccess< A, B > extends AbstractConvertedRandomAccess< A, B >
public final class ConvertedRandomAccess< A, B > extends AbstractConvertedRandomAccess< A, B >
{
final protected Supplier< Converter< ? super A, ? super B > > converterSupplier;
private final Supplier< Converter< ? super A, ? super B > > converterSupplier;

final protected Converter< ? super A, ? super B > converter;
private final Converter< ? super A, ? super B > converter;

final protected Supplier< ? extends B > convertedSupplier;
private final Supplier< ? extends B > convertedSupplier;

final protected B converted;
private final B converted;

/**
* Creates a copy of b for conversion that can be accessed through
Expand Down Expand Up @@ -98,7 +98,7 @@ public B get()
@Override
public ConvertedRandomAccess< A, B > copy()
{
return new ConvertedRandomAccess< A, B >(
return new ConvertedRandomAccess<>(
source.copy(),
converterSupplier,
convertedSupplier );
Expand Down

0 comments on commit e704085

Please sign in to comment.