[
https://issues.apache.org/jira/browse/NIFI-14051?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Daniel Stieglitz updated NIFI-14051:
------------------------------------
Summary: Explicit type arguments should be replaced by diamonds. (was:
Explicit type arguments should be replaced by diamond.)
> Explicit type arguments should be replaced by diamonds.
> -------------------------------------------------------
>
> Key: NIFI-14051
> URL: https://issues.apache.org/jira/browse/NIFI-14051
> Project: Apache NiFi
> Issue Type: Improvement
> Reporter: Daniel Stieglitz
> Assignee: Daniel Stieglitz
> Priority: Minor
> Time Spent: 50m
> Remaining Estimate: 0h
>
> There are many instances in the code where explicit type arguments are used
> when instantiating an object e.g.
> {code:java}
> Map<String, Object> expectedValues = new HashMap<String, Object>(){code}
> This used to be necessary in older versions of the JDK but now this can be
> simplified to
> {code:java}
> Map<String, Object> expectedValues = new HashMap<>(){code}
> This ticket aims to identify all such similar instantiations and replace them
> with a diamond <>.
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)