Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.hltech.pact.gen.domain.pact; |
||
12 | public class BigIntegerManufacturer extends AbstractTypeManufacturer<BigInteger> { |
||
13 | |||
14 | @Override |
||
15 | public BigInteger getType(DataProviderStrategy strategy, |
||
16 | AttributeMetadata attributeMetadata, |
||
17 | Map<String, Type> genericTypesArgumentsMap) { |
||
18 | return BigInteger.valueOf( |
||
19 | new IntTypeManufacturerImpl().getType(strategy, attributeMetadata, genericTypesArgumentsMap)); |
||
20 | } |
||
22 |