Delete unnecessary code

Organize imports
Proper indentation
This commit is contained in:
Carlos Ruiz 2008-11-17 16:01:43 +00:00
parent 8b7c179551
commit 6c84b156fe
1 changed files with 14 additions and 33 deletions

View File

@ -15,18 +15,16 @@
*****************************************************************************/
package org.eevolution.model;
import java.math.*;
import java.sql.*;
import java.util.*;
import java.util.logging.*;
import org.compiere.model.*;
import org.compiere.util.*;
import java.sql.ResultSet;
import java.util.Properties;
import org.compiere.model.X_M_ForecastLine;
/**
* Forcast Line Model
* Forecast Line Model
*
* @author Victor Perez www.e-evolution.com
* @version $Id: MForcastLine.java,v 1.11 2005/05/17 05:29:52 vpj-cd Exp $
* @version $Id: MForecastLine.java,v 1.11 2005/05/17 05:29:52 vpj-cd Exp $
*/
public class MForecastLine extends X_M_ForecastLine
{
@ -38,11 +36,7 @@ public class MForecastLine extends X_M_ForecastLine
public MForecastLine (Properties ctx, int M_ForecastLine_ID, String trxName)
{
super (ctx, M_ForecastLine_ID, trxName);
if (M_ForecastLine_ID == 0)
{
}
} // MForcastLine
} // MForecastLine
/**
* Load Constructor
@ -54,19 +48,6 @@ public class MForecastLine extends X_M_ForecastLine
super(ctx, rs, trxName);
} // MRequisitionLine
/**************************************************************************
* Before Save
* @param newRecord new
* @return true
*/
protected boolean beforeSave (boolean newRecord)
{
return true;
} // beforeSave
/**
* After Save.
* Update Total on Header
@ -100,4 +81,4 @@ public class MForecastLine extends X_M_ForecastLine
return true;
} // afterDelete
} // MForcastLine
} // MForecastLine