From 8188bad3a309eb104755e4360f905331c658d12c Mon Sep 17 00:00:00 2001 From: kaloyane <kaloyane> Date: Tue, 26 Apr 2011 15:28:57 +0000 Subject: [PATCH] [LMS-2205] use PropertyUtils instead of manual property parsing. SVN: 21045 --- .../plugins/standard/AbstractArchiverProcessingPlugin.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/AbstractArchiverProcessingPlugin.java b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/AbstractArchiverProcessingPlugin.java index 233ae4990b0..374f54c3797 100644 --- a/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/AbstractArchiverProcessingPlugin.java +++ b/datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/AbstractArchiverProcessingPlugin.java @@ -40,6 +40,7 @@ import ch.systemsx.cisd.common.filesystem.SimpleFreeSpaceProvider; import ch.systemsx.cisd.common.logging.Log4jSimpleLogger; import ch.systemsx.cisd.common.utilities.ClassUtils; import ch.systemsx.cisd.common.utilities.PropertyParametersUtil; +import ch.systemsx.cisd.common.utilities.PropertyUtils; import ch.systemsx.cisd.openbis.dss.generic.shared.ArchiverTaskContext; import ch.systemsx.cisd.openbis.dss.generic.shared.IArchiverPlugin; import ch.systemsx.cisd.openbis.dss.generic.shared.IDataSetDeleter; @@ -98,11 +99,7 @@ public abstract class AbstractArchiverProcessingPlugin extends AbstractDatastore super(properties, storeRoot); this.archivePrerequisiteOrNull = archivePrerequisiteOrNull; this.unarchivePrerequisiteOrNull = unarchivePrerequisiteOrNull; - - properties.getProperty(SYNCHRONIZE_ARCHIVE, Boolean.TRUE.toString()); - this.synchronizeArchive = - Boolean.parseBoolean(properties.getProperty(SYNCHRONIZE_ARCHIVE, - Boolean.TRUE.toString())); + this.synchronizeArchive = PropertyUtils.getBoolean(properties, SYNCHRONIZE_ARCHIVE, true); } /** -- GitLab