Revert Revision: 1366
Please see my comment here: http://sourceforge.net/tracker/index.php?func=detail&aid=1648850&group_id=176962&atid=879332
This commit is contained in:
parent
29227ba5b0
commit
09bc99eabb
|
|
@ -25,11 +25,6 @@ import org.compiere.util.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Persistent Table Model
|
* Persistent Table Model
|
||||||
* <p>
|
|
||||||
* Change log:
|
|
||||||
* <ul>
|
|
||||||
* <li>2007-01-31 - teo_sarca - [ 1648850 ] MTable.getClass works incorrect for table "Fact_Acct"
|
|
||||||
* </ul>
|
|
||||||
*
|
*
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: MTable.java,v 1.3 2006/07/30 00:58:04 jjanke Exp $
|
* @version $Id: MTable.java,v 1.3 2006/07/30 00:58:04 jjanke Exp $
|
||||||
|
|
@ -192,7 +187,7 @@ public class MTable extends X_AD_Table
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
String prefix = className.substring(0,index);
|
String prefix = className.substring(0,index);
|
||||||
if (!prefix.equals("Fact")) // keep custom prefix
|
if (prefix.equals("Fact")) // keep custom prefix
|
||||||
className = className.substring(index+1);
|
className = className.substring(index+1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue