Tikal: okf_properties-html-subfilter does not work
Created by: Anonymous
Original issue 249 created by mihn... on 2012-06-27T16:49:16.000Z:
With any properties file (might even be empty) run this:
tikal -x foo.properties -fc okf_properties-html-subfilter
(might also be -m and so on, anything that takes a -fc)
I would expect the extraction to work, but instead I get
ERROR: Unkown subfilter: okf_html
You can use the -trace option for more details.
Using version 16, on Win7, x64
The code tries to add okf_html,
fcMapper.addConfigurations(filtersMap.get("okf_html"));
but since it is protected by this
if ( filtersMap.containsKey(configId) ) { ... }
it never happens, as "okf_properties-html-subfilter" is not in filtersMap.
Fix attached.