@@ -1434,7 +1434,7 @@ public static VCInfoContainer getVCInfoContainer(User user, Connection con, Data
14341434 MathModelTable .table .versionDate .getQualifiedColName ();
14351435 sql = new StringBuffer (MathModelTable .table .getInfoSQL (user , null , (enableSpecial ? special : null ), dbSyntax ));
14361436 sql .insert (7 , Table .SQL_GLOBAL_HINT );
1437- TreeMap <BigDecimal , VCInfoMathModelContainer > mathModelContainer = new TreeMap <>();
1437+ TreeMap <BigDecimal , VCInfoMathModelContainer > mathModelContainerMap = new TreeMap <>();
14381438 rset = stmt .executeQuery (sql .toString ());
14391439 ArrayList <MathModelInfo > tempInfos = new ArrayList <MathModelInfo >();
14401440 Set <String > distinctV = new HashSet <String >();
@@ -1443,7 +1443,7 @@ public static VCInfoContainer getVCInfoContainer(User user, Connection con, Data
14431443 if (!distinctV .contains (versionInfo .getVersion ().getVersionKey ().toString ())){
14441444 tempInfos .add (versionInfo );
14451445 distinctV .add (versionInfo .getVersion ().getVersionKey ().toString ());
1446- mathModelContainer .put (BigDecimal .valueOf (Long .parseLong (versionInfo .getVersion ().getVersionKey ().toString ())),
1446+ mathModelContainerMap .put (BigDecimal .valueOf (Long .parseLong (versionInfo .getVersion ().getVersionKey ().toString ())),
14471447 new VCInfoMathModelContainer (versionInfo , new TreeMap <>(), new TreeMap <>(), new TreeMap <>()));
14481448 }
14491449 }
@@ -1479,7 +1479,7 @@ public static VCInfoContainer getVCInfoContainer(User user, Connection con, Data
14791479 " AND " + MathDescTable .table .id .getQualifiedColName () + " = " + MathModelTable .table .mathRef .getQualifiedColName ()
14801480 );
14811481
1482- final BigDecimal [] array = mathModelContainer .keySet ().toArray (new BigDecimal [0 ]);
1482+ final BigDecimal [] array = mathModelContainerMap .keySet ().toArray (new BigDecimal [0 ]);
14831483 final int MAX_LIST = 500 ;
14841484 for (int i = 0 ; i < array .length ; i += MAX_LIST ){
14851485 StringBuffer mmListStr = new StringBuffer ();
@@ -1492,7 +1492,7 @@ public static VCInfoContainer getVCInfoContainer(User user, Connection con, Data
14921492 MathModelInfo mmInfo = null ;
14931493 while (rset .next ()) {
14941494 final BigDecimal mmID = rset .getBigDecimal (MathModelSimulationLinkTable .table .mathModelRef .toString ());
1495- VCInfoMathModelContainer container = mathModelContainer .get (mmID );
1495+ VCInfoMathModelContainer container = mathModelContainerMap .get (mmID );
14961496 mmInfo = container .mathModelInfo ();
14971497 if (mmInfo != null ){
14981498 if (mmInfo .getAnnotatedFunctionsStr () == null ){
0 commit comments