Specify types in static factory methods in Requestors
-----------------------------------------------------
Key: AVRO-683
URL: https://issues.apache.org/jira/browse/AVRO-683
Project: Avro
Issue Type: Improvement
Affects Versions: 1.5.0
Reporter: Stephen Gargan
Priority: Trivial
Fix For: 1.5.0
Attachments: typed-requestors.patch
The attached patch adds type information to the static factory methods in the
SpecificRequestor and ReflectRequestor to avoid the necessity of casting the
proxy.
TestNamespace proxy =
(TestNamespace)SpecificRequestor.getClient(TestNamespace.class, client);
becomes
TestNamespace proxy = SpecificRequestor.getClient(TestNamespace.class, client);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.