minor -> avoid unneeded warning -----------> Msg.getMsg: NOT found:

This commit is contained in:
Carlos Ruiz 2012-08-07 18:12:38 -05:00
parent 3d2fa6c5aa
commit edb8242c2a
1 changed files with 1 additions and 3 deletions

View File

@ -974,14 +974,12 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
*/
public boolean onExit()
{
String message = Msg.getMsg(ctx, "SaveBeforeClose");
if (!boolChanges)
{
return true;
}
else
FDialog.info(this.curWindowNo, null, message);
FDialog.info(this.curWindowNo, null, "SaveBeforeClose");
return false;
}