unnecessary parameter

This commit is contained in:
zzz
2017-03-08 16:27:48 +00:00
parent 6fbeef5f8c
commit d1fdf14911

View File

@@ -170,7 +170,7 @@ class IntroductionManager {
* @return number of introducers added
*/
public int pickInbound(Properties ssuOptions, int howMany) {
int start = _context.random().nextInt(Integer.MAX_VALUE);
int start = _context.random().nextInt();
if (_log.shouldLog(Log.DEBUG))
_log.debug("Picking inbound out of " + _inbound.size());
if (_inbound.isEmpty()) return 0;