Fix PMD UnnecessaryFullyQualifiedName in TransformerUtils
This commit is contained in:
parent
fe4fff6ab0
commit
89f7341366
|
@ -35,6 +35,7 @@
|
|||
<action type="update" dev="ggregory" due-to="PMD, Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in CollectionUtils.</action>
|
||||
<action type="update" dev="ggregory" due-to="PMD, Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in MapUtils.</action>
|
||||
<action type="update" dev="ggregory" due-to="PMD, Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in PredicateUtils.</action>
|
||||
<action type="update" dev="ggregory" due-to="PMD, Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in TransformerUtils.</action>
|
||||
<!-- UPDATE -->
|
||||
<action type="update" dev="ggregory" due-to="Dependabot">Bump org.apache.commons:commons-parent from 67 to 69 #473.</action>
|
||||
<action type="update" dev="ggregory" due-to="Dependabot">Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #475.</action>
|
||||
|
|
|
@ -380,7 +380,7 @@ public class TransformerUtils {
|
|||
preds[i] = EqualPredicate.<I>equalPredicate(entry.getKey());
|
||||
trs[i++] = entry.getValue();
|
||||
}
|
||||
return TransformerUtils.switchTransformer(preds, trs, def);
|
||||
return switchTransformer(preds, trs, def);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue