change config.getValue

This commit is contained in:
anthony 2010-10-06 19:35:57 -07:00
parent f7eb42a4d3
commit b593fcd721
1 changed files with 3 additions and 7 deletions

View File

@ -133,12 +133,8 @@ public class ConfigurationDaoImpl extends GenericDaoBase<ConfigurationVO, String
}
ConfigurationVO config = configurations.get(0);
String value = config.getValue();
if (value == null) {
return "";
} else {
return value;
}
String value = config.getValue();
return value;
}
}