258259260261262263264265266267268
} if (param != null) { for (String p : param.split(",")) { String[] parts = p.split(":"); config.param(parts[0], parts[1]); } } if (start != null) { config.setStart(Integer.valueOf(start));
256257258259260261262263264265266