Skip to content
Snippets Groups Projects
Commit 0c5182b6 authored by tpylak's avatar tpylak
Browse files

SE-287 easier way to parse java beans from tsv with static columns

SVN: 17333
parent 344dd8b5
No related branches found
No related tags found
No related merge requests found
......@@ -24,11 +24,6 @@ import java.util.Properties;
import ch.rinn.restrictions.Private;
import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException;
import ch.systemsx.cisd.common.exceptions.UserFailureException;
import ch.systemsx.cisd.common.parser.AbstractParserObjectFactory;
import ch.systemsx.cisd.common.parser.IParserObjectFactory;
import ch.systemsx.cisd.common.parser.IParserObjectFactoryFactory;
import ch.systemsx.cisd.common.parser.IPropertyMapper;
import ch.systemsx.cisd.common.parser.ParserException;
import ch.systemsx.cisd.common.parser.TabFileLoader;
import ch.systemsx.cisd.common.utilities.PropertyUtils;
import ch.systemsx.cisd.openbis.generic.shared.dto.NewProperty;
......@@ -97,20 +92,7 @@ public abstract class AbstractDataSetInfoExtractor implements IDataSetInfoExtrac
if (propertiesFile.isFile())
{
TabFileLoader<NewProperty> tabFileLoader =
new TabFileLoader<NewProperty>(
new IParserObjectFactoryFactory<NewProperty>()
{
public IParserObjectFactory<NewProperty> createFactory(
IPropertyMapper propertyMapper)
throws ParserException
{
return new AbstractParserObjectFactory<NewProperty>(
NewProperty.class, propertyMapper)
{
};
}
});
new TabFileLoader<NewProperty>(NewProperty.class);
result.addAll(tabFileLoader.load(propertiesFile));
} else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment