Fix typo in string validation
authorBruno Sinou <bsinou@argeo.org>
Fri, 4 Dec 2015 16:37:34 +0000 (16:37 +0000)
committerBruno Sinou <bsinou@argeo.org>
Fri, 4 Dec 2015 16:37:34 +0000 (16:37 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@8680 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.cms/src/org/argeo/cms/forms/FormUtils.java

index 400aa735c273ebaca5a9cfa78f8b7574ebf76def..f5745889e3604d8066aae59ec9745b20e892407d 100644 (file)
@@ -14,6 +14,7 @@ import org.apache.commons.logging.LogFactory;
 import org.argeo.ArgeoException;
 import org.argeo.cms.CmsView;
 import org.argeo.cms.util.CmsUtils;
+import org.argeo.eclipse.ui.EclipseUiUtils;
 import org.eclipse.jface.fieldassist.ControlDecoration;
 import org.eclipse.jface.fieldassist.FieldDecorationRegistry;
 import org.eclipse.jface.viewers.DoubleClickEvent;
@@ -34,7 +35,7 @@ public class FormUtils {
 
        /** Simply checks if a string is not null nor empty */
        public static boolean notEmpty(String stringToTest) {
-               return stringToTest == null || "".equals(stringToTest.trim());
+               return EclipseUiUtils.notEmpty(stringToTest);
        }
 
        /** Best effort to convert a String to a calendar. Fails silently */