diff --git a/lib/ofac/parsing.js b/lib/ofac/parsing.js index a62eb69f..36b7dcd8 100644 --- a/lib/ofac/parsing.js +++ b/lib/ofac/parsing.js @@ -4,8 +4,6 @@ const nameUtils = require('./name-utils') const logger = require('../logger') const _ = require('lodash/fp') -const debug_log = require('../pp')(__filename) // KOSTIS TODO: remove - // KOSTIS TODO: get these from the document itself const INDIVIDUAL = '4' const NAME = '1403' @@ -132,8 +130,6 @@ function processProfile (profileNode) { const birthDatePeriods = mapCompact(processFeature, profileNode.Feature) const individual = {id, aliases, birthDatePeriods} - // debug_log(individual) - return individual }