Mark Hanson created GEODE-4012:
----------------------------------
Summary: Move to var for all variables that whose type can be
inferred
Key: GEODE-4012
URL: https://issues.apache.org/jira/browse/GEODE-4012
Project: Geode
Issue Type: Improvement
Components: native client
Reporter: Mark Hanson
In the code, we have things like the following...
ICollection<UInt32> keyTypeIds =
CacheableWrapperFactory.GetRegisteredKeyTypeIds();
to
var keyTypeIds = CacheableWrapperFactory.GetRegisteredKeyTypeIds();
This will make code far easier to refactor and avoid simple declaration
mistakes.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)