Skip to content

Commit

Permalink
Banish recent unchecked warning
Browse files Browse the repository at this point in the history
introduced in 45f965c.
  • Loading branch information
jcflack committed Sep 8, 2023
1 parent 606caf0 commit 5e8fa13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class NumericAdapter<T> extends Adapter.As<T,Void>
configure(NumericAdapter.class, Via.DATUM));

public static final NumericAdapter<BigDecimal> BIGDECIMAL_INSTANCE =
new NumericAdapter(AsBigDecimal.INSTANCE);
new NumericAdapter<>(AsBigDecimal.INSTANCE);

public NumericAdapter(Numeric<T> ctor)
{
Expand Down

0 comments on commit 5e8fa13

Please sign in to comment.