Skip to content

Commit

Permalink
don't return null from row mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 1, 2012
1 parent b3bca9f commit 2842882
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -305,7 +305,7 @@ public Object mapRow(Row row) {
String channelId = row.getString("channel_id");
Date extractTime = row.getDateTime("last_extract_time");
nodeChannelsMap.get(channelId).setLastExtractTime(extractTime);
return null;
return nodeChannelsMap;
};
}, nodeId);

Expand Down

0 comments on commit 2842882

Please sign in to comment.