Skip to content

Commit 1ecefa6

Browse files
committed
Allow BigInteger
1 parent ccee6cc commit 1ecefa6

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/com/hubspot/jinjava/el/ext/AllowlistGroup.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import com.hubspot.jinjava.util.ForLoop;
2525
import java.lang.reflect.Method;
2626
import java.math.BigDecimal;
27+
import java.math.BigInteger;
2728
import java.time.ZonedDateTime;
2829
import java.util.ArrayList;
2930
import java.util.LinkedHashMap;
@@ -50,6 +51,7 @@ public enum AllowlistGroup {
5051
boolean.class.getCanonicalName(),
5152
short.class.getCanonicalName(),
5253
BigDecimal.class.getCanonicalName(),
54+
BigInteger.class.getCanonicalName(),
5355
};
5456

5557
@Override

0 commit comments

Comments
 (0)