Tagged Questions

0
votes
3answers
48 views

Is there anything wrong with having a (custom) getId method on a Java object used in JRuby?

I'm a big fan of concise method names, so when our codebase has something like: Account.getAccountId(); I like to add an alias so that I can just do: Account.getId(); However, I've heard ... …