[stargate] Fix infinite recursive loop bug

Submitted-by: Zhentao Huang <zhentao.huang@trendmicro.com.cn>
Signed-off-by: Andrew Purtell <apurtell@apache.org>


git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@943999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Kyle Purtell 2010-05-13 20:10:25 +00:00
parent d335b19ebd
commit c6b5f4fa0d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class UserData {
}
public synchronized Object remove(int sel) {
return remove(sel);
return data.remove(sel);
}
}