[
https://issues.apache.org/jira/browse/NIFI-14051?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17903774#comment-17903774
]
ASF subversion and git services commented on NIFI-14051:
--------------------------------------------------------
Commit ba9273f8fae8b9c29811d96cdf6dd0dcdb8bdc0b in nifi's branch
refs/heads/main from dan-s1
[ https://gitbox.apache.org/repos/asf?p=nifi.git;h=ba9273f8fa ]
NIFI-14051 Removed unnecessary generic type declarations (#9562)
Signed-off-by: David Handermann <[email protected]>
> 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: 1h
> 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)