From ff3ba7e5d42bc442f9b8434dcbcd3424d873d919 Mon Sep 17 00:00:00 2001
From: Phi-Long Do
Date: Tue, 12 Feb 2019 18:59:10 +0100
Subject: [PATCH] Fix ObjectUtils#notEmpty doc
---
axelor-common/src/main/java/com/axelor/common/ObjectUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/axelor-common/src/main/java/com/axelor/common/ObjectUtils.java b/axelor-common/src/main/java/com/axelor/common/ObjectUtils.java
index 7fb27da38b..1cfd5c4e45 100644
--- a/axelor-common/src/main/java/com/axelor/common/ObjectUtils.java
+++ b/axelor-common/src/main/java/com/axelor/common/ObjectUtils.java
@@ -77,7 +77,7 @@ public static boolean isEmpty(Object value) {
* Check whether the given value is not empty.
*
* @param value the object value to check
- * @return true if empty false otherwise
+ * @return true if not empty false otherwise
* @see #isEmpty(Object)
*/
public static boolean notEmpty(Object value) {