Fix PMD UnnecessaryFullyQualifiedName in DefaultEquator

This commit is contained in:
Gary Gregory 2024-05-22 08:36:33 -04:00
parent 89f7341366
commit 7880a99f5e
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@
<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>
<action type="update" dev="ggregory" due-to="PMD, Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in DefaultEquator.</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>

View File

@ -48,7 +48,7 @@ public class DefaultEquator<T> implements Equator<T>, Serializable {
* @return the singleton instance
*/
public static <T> DefaultEquator<T> defaultEquator() {
return DefaultEquator.INSTANCE;
return INSTANCE;
}
/**