Skip to content
Snippets Groups Projects
Commit e16ac3bd authored by felmer's avatar felmer
Browse files

SP-122, BIS-81: replace StringUtils.isNotBlank()

SVN: 25644
parent 3f0d5275
No related branches found
No related tags found
No related merge requests found
...@@ -23,8 +23,6 @@ import java.util.HashSet; ...@@ -23,8 +23,6 @@ import java.util.HashSet;
import java.util.Properties; import java.util.Properties;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang.StringUtils;
import com.izforge.izpack.api.data.AutomatedInstallData; import com.izforge.izpack.api.data.AutomatedInstallData;
import com.izforge.izpack.api.data.PanelActionConfiguration; import com.izforge.izpack.api.data.PanelActionConfiguration;
import com.izforge.izpack.api.handler.AbstractUIHandler; import com.izforge.izpack.api.handler.AbstractUIHandler;
...@@ -112,7 +110,7 @@ public class SetEnableTechnologiesVariableAction implements PanelAction ...@@ -112,7 +110,7 @@ public class SetEnableTechnologiesVariableAction implements PanelAction
if (properties != null) if (properties != null)
{ {
String property = properties.getProperty(ENABLED_TECHNOLOGIES_KEY); String property = properties.getProperty(ENABLED_TECHNOLOGIES_KEY);
if (StringUtils.isNotBlank(property)) if (property != null && property.trim().length() > 0)
{ {
String[] splittedProperty = property.split(","); String[] splittedProperty = property.split(",");
for (String term : splittedProperty) for (String term : splittedProperty)
......
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