Daniel Stieglitz created NIFI-14051:
---------------------------------------
Summary: Explicit type arguments should be replaced by diamond
Key: NIFI-14051
URL: https://issues.apache.org/jira/browse/NIFI-14051
Project: Apache NiFi
Issue Type: Improvement
Reporter: Daniel Stieglitz
Assignee: Daniel Stieglitz
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)