Github user dcelasun commented on the issue:
https://github.com/apache/thrift/pull/1461
Any capitalized method on the client will potentially conflict with an RPC,
e.g:
```thrift
service Foo {
string C()
}
```
will generate uncompilable code. I suggest we use something like `Client_`
as the method name. It looks ugly, but there is precedent for it (conflicts
with keywords etc).---
