IDEMPIERE-4121 FactReconciliation : Remove annoying Msg.getMsg: NOT found: @Created@/@Deleted@

This commit is contained in:
Nicolas Micoud 2019-12-04 17:11:01 +01:00
parent 3921f67a2d
commit 7487a885bb
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public class FactReconciliation extends SvrProcess
pstmt.setTimestamp(3, p_DateAcct_From);
pstmt.setTimestamp(4, p_DateAcct_To);
int count = pstmt.executeUpdate();
String result = Msg.getMsg(getCtx(),"@Created@") + ": " + count + ", ";
String result = Msg.getMsg(getCtx(),"Created") + ": " + count + ", ";
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);
@ -88,7 +88,7 @@ public class FactReconciliation extends SvrProcess
pstmt = DB.prepareStatement(sql, get_TrxName());
pstmt.setInt(1, getAD_PInstance_ID());
count = pstmt.executeUpdate();
result = Msg.getMsg(getCtx(), "@Deleted@") + ": " + count;
result = Msg.getMsg(getCtx(), "Deleted") + ": " + count;
if (log.isLoggable(Level.FINE))log.log(Level.FINE, result);