IDEMPIERE-840 Improvement to Request model class - change the visibility level of PO.get_DisplayValue method to public

This commit is contained in:
Elaine Tan 2013-04-10 16:19:48 +08:00
parent 139b1e8040
commit 648fce4583
1 changed files with 1 additions and 1 deletions

View File

@ -1172,7 +1172,7 @@ public abstract class PO
* @param currentValue current value * @param currentValue current value
* @return String value with "./." as null * @return String value with "./." as null
*/ */
protected String get_DisplayValue(String columnName, boolean currentValue) public String get_DisplayValue(String columnName, boolean currentValue)
{ {
Object value = currentValue ? get_Value(columnName) : get_ValueOld(columnName); Object value = currentValue ? get_Value(columnName) : get_ValueOld(columnName);
if (value == null) if (value == null)