IDEMPIERE-455 Discover and fix FindBugs problems / RV_RETURN_VALUE_IGNORED
http://findbugs.sourceforge.net/bugDescriptions.html#RV_RETURN_VALUE_IGNORED
This commit is contained in:
parent
650f1344fd
commit
3d25237fb6
|
@ -417,7 +417,7 @@ public class CreateAdempiere
|
|||
if (def != null)
|
||||
{
|
||||
//jz: replace '' to \', otherwise exception
|
||||
def.replaceAll("''", "\\'");
|
||||
def = def.replaceAll("''", "\\'");
|
||||
sb.append(" DEFAULT ").append(def);
|
||||
}
|
||||
// Null
|
||||
|
|
|
@ -214,8 +214,8 @@ public class GridTabVO implements Evaluatee, Serializable
|
|||
if (vo.WhereClause == null)
|
||||
vo.WhereClause = "";
|
||||
//jz col=null not good for Derby
|
||||
if (vo.WhereClause.indexOf("=null")>0)
|
||||
vo.WhereClause.replaceAll("=null", " IS NULL ");
|
||||
if (vo.WhereClause.indexOf("=null")>0)
|
||||
vo.WhereClause = vo.WhereClause.replaceAll("=null", " IS NULL ");
|
||||
// Where Clauses should be surrounded by parenthesis - teo_sarca, BF [ 1982327 ]
|
||||
if (vo.WhereClause.trim().length() > 0) {
|
||||
vo.WhereClause = "("+vo.WhereClause+")";
|
||||
|
|
|
@ -225,7 +225,7 @@ public class CashFlow extends SvrProcess {
|
|||
open = open.subtract(paid);
|
||||
}
|
||||
if (open.scale() > curr.getStdPrecision())
|
||||
open.setScale(curr.getStdPrecision(), BigDecimal.ROUND_HALF_UP);
|
||||
open = open.setScale(curr.getStdPrecision(), BigDecimal.ROUND_HALF_UP);
|
||||
BigDecimal invoiced = order.getGrandTotal().subtract(open);
|
||||
if (isPaySchedule) {
|
||||
MOrderPaySchedule[] schedule = MOrderPaySchedule.getOrderPaySchedule(getCtx(), order_id, 0, get_TrxName());
|
||||
|
|
Loading…
Reference in New Issue