JongYoon Lim created HAMA-967:
---------------------------------
Summary: Remove a meaningless checking condition.
Key: HAMA-967
URL: https://issues.apache.org/jira/browse/HAMA-967
Project: Hama
Issue Type: Bug
Components: bsp core
Affects Versions: 0.7.0
Reporter: JongYoon Lim
Priority: Trivial
*split()* of *String* in *RPC* and *AsyncRPC* returns the array of strings. So
checking *null* condition is meaningless.
{code:java}
String[] names = className.split("\\.", -1);
if (names == null || names.length == 0) {
return className;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)