Индусы, иднусы...
Date: 02/15/08
(Code WTF) Keywords: no keywords
Немцы тоже жгут!
Ковыряюсь в коде, котоый наколбасил коллега немецкого происхождения и вот что вижу.
кусок джава-кода:
/**
* parse the userId
*
* @param sUserId
* @param log
* @return userId
* @throws Exception
*/
public static Long parseUserId(final String sUserId, final Log log)
throws Exception{
if (log.isDebugEnabled())log.debug("WorklistSummaryUtils.parseUserId.begin");
Long userId = null;
if (sUserId != null)
{
userId = Long.parseLong(sUserId);
}
if (log.isDebugEnabled())log.debug("WorklistSummaryUtils.parseUserId.end");
return userId;
}
Source: http://community.livejournal.com/code_wtf/122248.html